eric6/Debugger/DebuggerInterfaceNone.py

branch
multi_processing
changeset 7874
8dcb77600690
parent 7867
aa870fdd40d8
child 7882
617cc27f11af
equal deleted inserted replaced
7873:cb2badbdf26c 7874:8dcb77600690
131 @param env environment settings (dictionary) 131 @param env environment settings (dictionary)
132 """ 132 """
133 return 133 return
134 134
135 def remoteLoad(self, fn, argv, wd, traceInterpreter=False, 135 def remoteLoad(self, fn, argv, wd, traceInterpreter=False,
136 autoContinue=True, autoFork=False, forkChild=False, 136 autoContinue=True, enableMultiprocess=False):
137 enableMultiprocess=False):
138 """ 137 """
139 Public method to load a new program to debug. 138 Public method to load a new program to debug.
140 139
141 @param fn the filename to debug 140 @param fn the filename to debug
142 @type str 141 @type str
148 should be traced as well 147 should be traced as well
149 @type bool 148 @type bool
150 @param autoContinue flag indicating, that the debugger should not 149 @param autoContinue flag indicating, that the debugger should not
151 stop at the first executable line 150 stop at the first executable line
152 @type bool 151 @type bool
153 @param autoFork flag indicating the automatic fork mode
154 @type bool
155 @param forkChild flag indicating to debug the child after forking
156 @type bool
157 @param enableMultiprocess flag indicating to perform multiprocess 152 @param enableMultiprocess flag indicating to perform multiprocess
158 debugging 153 debugging
159 @type bool 154 @type bool
160 """ 155 """
161 return 156 return
162 157
163 def remoteRun(self, fn, argv, wd, autoFork=False, forkChild=False): 158 def remoteRun(self, fn, argv, wd):
164 """ 159 """
165 Public method to load a new program to run. 160 Public method to load a new program to run.
166 161
167 @param fn the filename to run 162 @param fn the filename to run
168 @type str 163 @type str
169 @param argv the commandline arguments to pass to the program 164 @param argv the commandline arguments to pass to the program
170 @type str 165 @type str
171 @param wd the working directory for the program 166 @param wd the working directory for the program
172 @type str 167 @type str
173 @param autoFork flag indicating the automatic fork mode
174 @type bool
175 @param forkChild flag indicating to debug the child after forking
176 @type bool
177 """ 168 """
178 return 169 return
179 170
180 def remoteCoverage(self, fn, argv, wd, erase=False): 171 def remoteCoverage(self, fn, argv, wd, erase=False):
181 """ 172 """

eric ide

mercurial