Debugger/DebuggerInterfaceNone.py

changeset 3357
2390df6f42ba
parent 3160
209a07d7e401
child 3484
645c12de6b0c
diff -r 22633c0739e2 -r 2390df6f42ba Debugger/DebuggerInterfaceNone.py
--- a/Debugger/DebuggerInterfaceNone.py	Tue Mar 11 18:56:38 2014 +0100
+++ b/Debugger/DebuggerInterfaceNone.py	Tue Mar 11 20:07:05 2014 +0100
@@ -53,10 +53,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):
         """
@@ -65,10 +66,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