--- a/Debugger/DebuggerInterfaceNone.py Sat Aug 26 17:10:43 2017 +0200 +++ b/Debugger/DebuggerInterfaceNone.py Sat Aug 26 19:26:07 2017 +0200 @@ -409,18 +409,19 @@ @param passive flag indicating passive connection mode @type bool @return instantiated debugger interface - @rtype DebuggerInterfacePython + @rtype DebuggerInterfaceNone """ return DebuggerInterfaceNone(debugServer, passive) def getRegistryData(): """ - Module functionto get characterizing data for the debugger interface. + Module function to get characterizing data for the debugger interface. - @return tuple containing client type, client capabilities, client file - type associations and reference to creation function - @rtype tuple of (str, int, list of str, function) + @return list of tuples containing the client type, the client capabilities, + the client file type associations and a reference to the creation + function + @rtype list of tuple of (str, int, list of str, function) """ - return ["None", ClientDefaultCapabilities, ClientTypeAssociations, - createDebuggerInterfaceNone] + return [("None", ClientDefaultCapabilities, ClientTypeAssociations, + createDebuggerInterfaceNone)]