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 |