63 @param workingDir directory to start the debugger client in |
63 @param workingDir directory to start the debugger client in |
64 @type str |
64 @type str |
65 @param configOverride dictionary containing the global config override |
65 @param configOverride dictionary containing the global config override |
66 data |
66 data |
67 @type dict |
67 @type dict |
68 @param startRemote flag indicating to start the client via an eric-ide server |
68 @param startViaServer flag indicating to start the client via an eric-ide server |
69 (defaults to False) |
69 (defaults to None) |
70 @type bool (optional) |
70 @type bool (optional) |
71 @return client process object, a flag to indicate a network connection |
71 @return client process object, a flag to indicate a network connection |
72 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 |
73 @rtype tuple of (QProcess, bool, str) |
73 @rtype tuple of (QProcess, bool, str) |
74 """ |
74 """ |
99 @param workingDir directory to start the debugger client in |
99 @param workingDir directory to start the debugger client in |
100 @type str |
100 @type str |
101 @param configOverride dictionary containing the global config override |
101 @param configOverride dictionary containing the global config override |
102 data |
102 data |
103 @type dict |
103 @type dict |
104 @param startRemote flag indicating to start the client via an eric-ide server |
104 @param startViaServer flag indicating to start the client via an eric-ide server |
105 (defaults to False) |
105 (defaults to None) |
106 @type bool (optional) |
106 @type bool (optional) |
107 @return client process object, a flag to indicate a network connection |
107 @return client process object, a flag to indicate a network connection |
108 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 |
109 @rtype tuple of (QProcess, bool, str) |
109 @rtype tuple of (QProcess, bool, str) |
110 """ |
110 """ |