433 @param env environment settings (dictionary) |
433 @param env environment settings (dictionary) |
434 """ |
434 """ |
435 self.__sendCommand('{0}{1}\n'.format( |
435 self.__sendCommand('{0}{1}\n'.format( |
436 DebugProtocol.RequestEnv, str(env))) |
436 DebugProtocol.RequestEnv, str(env))) |
437 |
437 |
438 def remoteLoad(self, fn, argv, wd, traceInterpreter=False, autoContinue=True, |
438 def remoteLoad(self, fn, argv, wd, traceInterpreter=False, |
439 autoFork=False, forkChild=False): |
439 autoContinue=True, autoFork=False, forkChild=False): |
440 """ |
440 """ |
441 Public method to load a new program to debug. |
441 Public method to load a new program to debug. |
442 |
442 |
443 @param fn the filename to debug (string) |
443 @param fn the filename to debug (string) |
444 @param argv the commandline arguments to pass to the program (string) |
444 @param argv the commandline arguments to pass to the program (string) |