Debugger/DebuggerInterfaceNone.py

changeset 5850
7fae79975686
parent 5658
e5f6fe5855fd
child 5899
0516f6548ca6
diff -r 512001065055 -r 7fae79975686 Debugger/DebuggerInterfaceNone.py
--- 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)]

eric ide

mercurial