Debugger/DebuggerInterfaceNone.py

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

eric ide

mercurial