--- a/eric6/Debugger/DebuggerInterfacePython.py Sun Dec 13 19:54:19 2020 +0100 +++ b/eric6/Debugger/DebuggerInterfacePython.py Mon Dec 14 19:23:25 2020 +0100 @@ -671,10 +671,8 @@ self.__sendJsonCommand("RequestEnvironment", {"environment": env}, self.__master) - # TODO: remove autoFork and forkChild def remoteLoad(self, fn, argv, wd, traceInterpreter=False, - autoContinue=True, autoFork=False, forkChild=False, - enableMultiprocess=False): + autoContinue=True, enableMultiprocess=False): """ Public method to load a new program to debug. @@ -690,10 +688,6 @@ @param autoContinue flag indicating, that the debugger should not stop at the first executable line @type bool - @param autoFork flag indicating the automatic fork mode - @type bool - @param forkChild flag indicating to debug the child after forking - @type bool @param enableMultiprocess flag indicating to perform multiprocess debugging @type bool @@ -709,13 +703,10 @@ "filename": fn, "argv": Utilities.parseOptionString(argv), "traceInterpreter": traceInterpreter, - "autofork": autoFork, - "forkChild": forkChild, "multiprocess": enableMultiprocess, }, self.__master) - # TODO: remove autoFork and forkChild - def remoteRun(self, fn, argv, wd, autoFork=False, forkChild=False): + def remoteRun(self, fn, argv, wd): """ Public method to load a new program to run. @@ -725,10 +716,6 @@ @type str @param wd the working directory for the program @type str - @param autoFork flag indicating the automatic fork mode - @type bool - @param forkChild flag indicating to debug the child after forking - @type bool """ self.__scriptName = os.path.abspath(fn) @@ -738,8 +725,6 @@ "workdir": wd, "filename": fn, "argv": Utilities.parseOptionString(argv), - "autofork": autoFork, - "forkChild": forkChild, }, self.__master) def remoteCoverage(self, fn, argv, wd, erase=False):