eric6/Debugger/DebuggerInterfacePython.py

changeset 8074
a54194132814
parent 8073
6b1c43d49dbd
child 8075
6774034a1e0f
equal deleted inserted replaced
8073:6b1c43d49dbd 8074:a54194132814
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.

eric ide

mercurial