62 @param workingDir directory to start the debugger client in |
63 @param workingDir directory to start the debugger client in |
63 @type str |
64 @type str |
64 @param configOverride dictionary containing the global config override |
65 @param configOverride dictionary containing the global config override |
65 data |
66 data |
66 @type dict |
67 @type dict |
|
68 @param startRemote flag indicating to start the client via an eric-ide server |
|
69 (defaults to False) |
|
70 @type bool (optional) |
67 @return client process object, a flag to indicate a network connection |
71 @return client process object, a flag to indicate a network connection |
68 and the name of the interpreter in case of a local execution |
72 and the name of the interpreter in case of a local execution |
69 @rtype tuple of (QProcess, bool, str) |
73 @rtype tuple of (QProcess, bool, str) |
70 """ |
74 """ |
71 return None, True, "" |
75 return None, True, "" |
94 @param workingDir directory to start the debugger client in |
99 @param workingDir directory to start the debugger client in |
95 @type str |
100 @type str |
96 @param configOverride dictionary containing the global config override |
101 @param configOverride dictionary containing the global config override |
97 data |
102 data |
98 @type dict |
103 @type dict |
|
104 @param startRemote flag indicating to start the client via an eric-ide server |
|
105 (defaults to False) |
|
106 @type bool (optional) |
99 @return client process object, a flag to indicate a network connection |
107 @return client process object, a flag to indicate a network connection |
100 and the name of the interpreter in case of a local execution |
108 and the name of the interpreter in case of a local execution |
101 @rtype tuple of (QProcess, bool, str) |
109 @rtype tuple of (QProcess, bool, str) |
102 """ |
110 """ |
103 return None, True, "" |
111 return None, True, "" |