DebugClients/Python/DebugClientBase.py

changeset 4566
a2e8f3c420ec
parent 4563
881340f4bd0c
child 4604
623f95f1531b
equal deleted inserted replaced
4564:a6480863adfb 4566:a2e8f3c420ec
2115 del args[0] 2115 del args[0]
2116 break 2116 break
2117 else: # unknown option 2117 else: # unknown option
2118 del args[0] 2118 del args[0]
2119 if not args: 2119 if not args:
2120 print "No program given. Aborting!" 2120 print "No program given. Aborting!" # __IGNORE_WARNING__
2121 else: 2121 else:
2122 if not self.noencoding: 2122 if not self.noencoding:
2123 self.__coding = self.defaultCoding 2123 self.__coding = self.defaultCoding
2124 self.startProgInDebugger(args, wd, host, port, 2124 self.startProgInDebugger(args, wd, host, port,
2125 exceptions=exceptions, 2125 exceptions=exceptions,
2156 if not self.noencoding: 2156 if not self.noencoding:
2157 self.__coding = self.defaultCoding 2157 self.__coding = self.defaultCoding
2158 self.connectDebugger(port, remoteAddress, redirect) 2158 self.connectDebugger(port, remoteAddress, redirect)
2159 self.__interact() 2159 self.__interact()
2160 else: 2160 else:
2161 print "No network port given. Aborting..." 2161 print "No network port given. Aborting..." # __IGNORE_WARNING__
2162 2162
2163 def fork(self): 2163 def fork(self):
2164 """ 2164 """
2165 Public method implementing a fork routine deciding which branch to 2165 Public method implementing a fork routine deciding which branch to
2166 follow. 2166 follow.

eric ide

mercurial