eric6/Debugger/DebuggerInterfaceNone.py

branch
multi_processing
changeset 7874
8dcb77600690
parent 7867
aa870fdd40d8
child 7882
617cc27f11af
--- a/eric6/Debugger/DebuggerInterfaceNone.py	Sun Dec 13 19:54:19 2020 +0100
+++ b/eric6/Debugger/DebuggerInterfaceNone.py	Mon Dec 14 19:23:25 2020 +0100
@@ -133,8 +133,7 @@
         return
         
     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.
         
@@ -150,17 +149,13 @@
         @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
         """
         return
         
-    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.
         
@@ -170,10 +165,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
         """
         return
         

eric ide

mercurial