Debugger/DebuggerInterfaceNone.py

changeset 112
16893e193e9d
parent 13
1af94a91f439
child 481
ad71812ba395
child 792
a13346916170
equal deleted inserted replaced
111:1887e3af7b74 112:16893e193e9d
132 @keyparam autoFork flag indicating the automatic fork mode (boolean) 132 @keyparam autoFork flag indicating the automatic fork mode (boolean)
133 @keyparam forkChild flag indicating to debug the child after forking (boolean) 133 @keyparam forkChild flag indicating to debug the child after forking (boolean)
134 """ 134 """
135 return 135 return
136 136
137 def remoteRun(self, fn, argv, wd): 137 def remoteRun(self, fn, argv, wd, autoFork = False, forkChild = False):
138 """ 138 """
139 Public method to load a new program to run. 139 Public method to load a new program to run.
140 140
141 @param fn the filename to run (string) 141 @param fn the filename to run (string)
142 @param argv the commandline arguments to pass to the program (string) 142 @param argv the commandline arguments to pass to the program (string)
143 @param wd the working directory for the program (string) 143 @param wd the working directory for the program (string)
144 @keyparam autoFork flag indicating the automatic fork mode (boolean)
145 @keyparam forkChild flag indicating to debug the child after forking (boolean)
144 """ 146 """
145 return 147 return
146 148
147 def remoteCoverage(self, fn, argv, wd, erase = False): 149 def remoteCoverage(self, fn, argv, wd, erase = False):
148 """ 150 """

eric ide

mercurial