520 sys.excepthook = self.__unhandled_exception |
520 sys.excepthook = self.__unhandled_exception |
521 self.__interceptSignals() |
521 self.__interceptSignals() |
522 |
522 |
523 # clear all old breakpoints, they'll get set after we have |
523 # clear all old breakpoints, they'll get set after we have |
524 # started |
524 # started |
525 self.mainThread.clear_all_breaks() |
525 Breakpoint.clear_all_breaks() |
|
526 Watch.clear_all_watches() |
526 |
527 |
527 self.mainThread.tracePythonLibs(int(tracePython)) |
528 self.mainThread.tracePythonLibs(int(tracePython)) |
528 |
529 |
529 # This will eventually enter a local event loop. |
530 # This will eventually enter a local event loop. |
530 # Note the use of backquotes to cause a repr of self.running. |
531 # Note the use of backquotes to cause a repr of self.running. |