src/eric7/Debugger/DebuggerInterfaceNone.py

branch
server
changeset 10630
552a790fd9bc
parent 10551
d80184d38152
child 10985
91243eb0390d
equal deleted inserted replaced
10629:b0d14cba79b1 10630:552a790fd9bc
44 runInConsole, 44 runInConsole,
45 venvName, 45 venvName,
46 originalPathString, 46 originalPathString,
47 workingDir=None, 47 workingDir=None,
48 configOverride=None, 48 configOverride=None,
49 startRemote=False,
49 ): 50 ):
50 """ 51 """
51 Public method to start a remote Python interpreter. 52 Public method to start a remote Python interpreter.
52 53
53 @param port port number the debug server is listening on 54 @param port port number the debug server is listening on
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, ""
76 runInConsole, 80 runInConsole,
77 venvName, 81 venvName,
78 originalPathString, 82 originalPathString,
79 workingDir=None, 83 workingDir=None,
80 configOverride=None, 84 configOverride=None,
85 startRemote=False,
81 ): 86 ):
82 """ 87 """
83 Public method to start a remote Python interpreter for a project. 88 Public method to start a remote Python interpreter for a project.
84 89
85 @param port port number the debug server is listening on 90 @param port port number the debug server is listening on
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, ""

eric ide

mercurial