513 sys.excepthook = self.__unhandled_exception |
513 sys.excepthook = self.__unhandled_exception |
514 self.__interceptSignals() |
514 self.__interceptSignals() |
515 |
515 |
516 # clear all old breakpoints, they'll get set after we have |
516 # clear all old breakpoints, they'll get set after we have |
517 # started |
517 # started |
518 self.mainThread.clear_all_breaks() |
518 Breakpoint.clear_all_breaks() |
|
519 Watch.clear_all_watches() |
519 |
520 |
520 self.mainThread.tracePythonLibs(int(tracePython)) |
521 self.mainThread.tracePythonLibs(int(tracePython)) |
521 |
522 |
522 # This will eventually enter a local event loop. |
523 # This will eventually enter a local event loop. |
523 # Note the use of backquotes to cause a repr of self.running. |
524 # Note the use of backquotes to cause a repr of self.running. |