Set quitting attribute to True. Raises BdbQuit exception in the next call to a dispatch_*() method.
(self)
| 637 | self.frame_trace_lines_opcodes = {} |
| 638 | |
| 639 | def set_quit(self): |
| 640 | """Set quitting attribute to True. |
| 641 | |
| 642 | Raises BdbQuit exception in the next call to a dispatch_*() method. |
| 643 | """ |
| 644 | self.stopframe = self.botframe |
| 645 | self.returnframe = None |
| 646 | self.quitting = True |
| 647 | self.stop_trace() |
| 648 | |
| 649 | # Derived classes and clients can call the following methods |
| 650 | # to manipulate breakpoints. These methods return an |