Restart command. In the context of ipython this is exactly the same thing as 'quit'.
(self, arg)
| 326 | do_q = do_quit = decorate_fn_with_doc(new_do_quit, OldPdb.do_quit) |
| 327 | |
| 328 | def new_do_restart(self, arg): |
| 329 | """Restart command. In the context of ipython this is exactly the same |
| 330 | thing as 'quit'.""" |
| 331 | self.msg("Restart doesn't make sense here. Using 'quit' instead.") |
| 332 | return self.do_quit(arg) |
| 333 | |
| 334 | def print_stack_trace(self, context=None): |
| 335 | Colors = self.color_scheme_table.active_colors |
nothing calls this directly
no outgoing calls
no test coverage detected