(self, arg)
| 317 | OldPdb.do_frame(self, arg) |
| 318 | |
| 319 | def new_do_quit(self, arg): |
| 320 | |
| 321 | if hasattr(self, 'old_all_completions'): |
| 322 | self.shell.Completer.all_completions=self.old_all_completions |
| 323 | |
| 324 | return OldPdb.do_quit(self, arg) |
| 325 | |
| 326 | do_q = do_quit = decorate_fn_with_doc(new_do_quit, OldPdb.do_quit) |
| 327 |
nothing calls this directly
no outgoing calls
no test coverage detected