Debugger/DebuggerInterfaceNone.py

changeset 3357
2390df6f42ba
parent 3160
209a07d7e401
child 3484
645c12de6b0c
equal deleted inserted replaced
3356:22633c0739e2 3357:2390df6f42ba
51 Public method to start a remote Python interpreter. 51 Public method to start a remote Python interpreter.
52 52
53 @param port portnumber the debug server is listening on (integer) 53 @param port portnumber the debug server is listening on (integer)
54 @param runInConsole flag indicating to start the debugger in a 54 @param runInConsole flag indicating to start the debugger in a
55 console window (boolean) 55 console window (boolean)
56 @return client process object (QProcess) and a flag to indicate 56 @return client process object (QProcess), a flag to indicate
57 a network connection (boolean) 57 a network connection (boolean) and the name of the interpreter
58 """ 58 in case of a local execution (string)
59 return None, True 59 """
60 return None, True, ""
60 61
61 def startRemoteForProject(self, port, runInConsole): 62 def startRemoteForProject(self, port, runInConsole):
62 """ 63 """
63 Public method to start a remote Python interpreter for a project. 64 Public method to start a remote Python interpreter for a project.
64 65
65 @param port portnumber the debug server is listening on (integer) 66 @param port portnumber the debug server is listening on (integer)
66 @param runInConsole flag indicating to start the debugger in a 67 @param runInConsole flag indicating to start the debugger in a
67 console window (boolean) 68 console window (boolean)
68 @return client process object (QProcess) and a flag to indicate 69 @return client process object (QProcess), a flag to indicate
69 a network connection (boolean) 70 a network connection (boolean) and the name of the interpreter
70 """ 71 in case of a local execution (string)
71 return None, True 72 """
73 return None, True, ""
72 74
73 def getClientCapabilities(self): 75 def getClientCapabilities(self):
74 """ 76 """
75 Public method to retrieve the debug clients capabilities. 77 Public method to retrieve the debug clients capabilities.
76 78

eric ide

mercurial