Debugger/DebugServer.py

branch
5_1_x
changeset 1110
9de6692fadbd
parent 986
12880ccc4d15
child 1181
31d20dc43805
equal deleted inserted replaced
1108:1b948b092868 1110:9de6692fadbd
622 try: 622 try:
623 key, value = el.split('=', 1) 623 key, value = el.split('=', 1)
624 if value.startswith('"') or value.startswith("'"): 624 if value.startswith('"') or value.startswith("'"):
625 value = value[1:-1] 625 value = value[1:-1]
626 envdict[key] = value 626 envdict[key] = value
627 except UnpackError: 627 except ValueError:
628 pass 628 pass
629 self.debuggerInterface.remoteEnvironment(envdict) 629 self.debuggerInterface.remoteEnvironment(envdict)
630 630
631 def remoteLoad(self, fn, argv, wd, env, autoClearShell = True, 631 def remoteLoad(self, fn, argv, wd, env, autoClearShell = True,
632 tracePython = False, autoContinue = True, forProject = False, 632 tracePython = False, autoContinue = True, forProject = False,

eric ide

mercurial