Debugger/DebuggerInterfaceNone.py

branch
Py2 comp.
changeset 3484
645c12de6b0c
parent 3178
f25fc1364c88
parent 3357
2390df6f42ba
child 3656
441956d8fce5
diff -r 96232974dcdb -r 645c12de6b0c Debugger/DebuggerInterfaceNone.py
--- a/Debugger/DebuggerInterfaceNone.py	Sun Mar 30 22:00:14 2014 +0200
+++ b/Debugger/DebuggerInterfaceNone.py	Thu Apr 03 23:05:31 2014 +0200
@@ -55,10 +55,11 @@
         @param port portnumber the debug server is listening on (integer)
         @param runInConsole flag indicating to start the debugger in a
             console window (boolean)
-        @return client process object (QProcess) and a flag to indicate
-            a network connection (boolean)
+        @return client process object (QProcess), a flag to indicate
+            a network connection (boolean) and the name of the interpreter
+            in case of a local execution (string)
         """
-        return None, True
+        return None, True, ""
 
     def startRemoteForProject(self, port, runInConsole):
         """
@@ -67,10 +68,11 @@
         @param port portnumber the debug server is listening on (integer)
         @param runInConsole flag indicating to start the debugger in a
             console window (boolean)
-        @return client process object (QProcess) and a flag to indicate
-            a network connection (boolean)
+        @return client process object (QProcess), a flag to indicate
+            a network connection (boolean) and the name of the interpreter
+            in case of a local execution (string)
         """
-        return None, True
+        return None, True, ""
 
     def getClientCapabilities(self):
         """

eric ide

mercurial