q(uit)\nexit Quit from the debugger. The program being executed is aborted.
(self, arg)
| 1120 | complete_debug = _complete_expression |
| 1121 | |
| 1122 | def do_quit(self, arg): |
| 1123 | """q(uit)\nexit |
| 1124 | Quit from the debugger. The program being executed is aborted. |
| 1125 | """ |
| 1126 | self._user_requested_quit = True |
| 1127 | self.set_quit() |
| 1128 | return 1 |
| 1129 | |
| 1130 | do_q = do_quit |
| 1131 | do_exit = do_quit |