681 Public method to set the environment for a program to debug, run, ... |
681 Public method to set the environment for a program to debug, run, ... |
682 |
682 |
683 @param env environment settings |
683 @param env environment settings |
684 @type dict |
684 @type dict |
685 """ |
685 """ |
686 if self.__master: |
686 self.__sendJsonCommand("RequestEnvironment", {"environment": env}, |
687 self.__sendJsonCommand("RequestEnvironment", {"environment": env}, |
687 self.__master) |
688 self.__master) |
|
689 |
688 |
690 def remoteLoad(self, fn, argv, wd, traceInterpreter=False, |
689 def remoteLoad(self, fn, argv, wd, traceInterpreter=False, |
691 autoContinue=True, enableMultiprocess=False): |
690 autoContinue=True, enableMultiprocess=False): |
692 """ |
691 """ |
693 Public method to load a new program to debug. |
692 Public method to load a new program to debug. |