src/eric7/Debugger/DebuggerInterfaceNone.py

branch
eric7
changeset 10985
91243eb0390d
parent 10630
552a790fd9bc
child 11029
1cd8701ed260
equal deleted inserted replaced
10984:21c0a3d40d69 10985:91243eb0390d
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 startViaServer=None,
50 ): 50 ):
51 """ 51 """
52 Public method to start a remote Python interpreter. 52 Public method to start a remote Python interpreter.
53 53
54 @param port port number the debug server is listening on 54 @param port port number the debug server is listening on
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 """
80 runInConsole, 80 runInConsole,
81 venvName, 81 venvName,
82 originalPathString, 82 originalPathString,
83 workingDir=None, 83 workingDir=None,
84 configOverride=None, 84 configOverride=None,
85 startRemote=False, 85 startViaServer=None,
86 ): 86 ):
87 """ 87 """
88 Public method to start a remote Python interpreter for a project. 88 Public method to start a remote Python interpreter for a project.
89 89
90 @param port port number the debug server is listening on 90 @param port port number the debug server is listening on
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 """

eric ide

mercurial