diff -r 842dd0958302 -r 29344a31ee2a eric7/Debugger/DebuggerInterfaceNone.py --- a/eric7/Debugger/DebuggerInterfaceNone.py Sun Feb 27 19:02:33 2022 +0100 +++ b/eric7/Debugger/DebuggerInterfaceNone.py Mon Feb 28 17:07:35 2022 +0100 @@ -39,7 +39,7 @@ self.clientCapabilities = ClientDefaultCapabilities def startRemote(self, port, runInConsole, venvName, originalPathString, - workingDir=None): + workingDir=None, configOverride=None): """ Public method to start a remote Python interpreter. @@ -54,6 +54,9 @@ @type str @param workingDir directory to start the debugger client in @type str + @param configOverride dictionary containing the global config override + data + @type dict @return client process object, a flag to indicate a network connection and the name of the interpreter in case of a local execution @rtype tuple of (QProcess, bool, str) @@ -61,7 +64,8 @@ return None, True, "" def startRemoteForProject(self, port, runInConsole, venvName, - originalPathString, workingDir=None): + originalPathString, workingDir=None, + configOverride=None): """ Public method to start a remote Python interpreter for a project. @@ -76,6 +80,9 @@ @type str @param workingDir directory to start the debugger client in @type str + @param configOverride dictionary containing the global config override + data + @type dict @return client process object, a flag to indicate a network connection and the name of the interpreter in case of a local execution @rtype tuple of (QProcess, bool, str)