exception [number] Alias for the ``exceptions`` command.
(self, arg)
| 535 | self.error("No exception with that number") |
| 536 | |
| 537 | def do_exception(self, arg): |
| 538 | """exception [number] |
| 539 | Alias for the ``exceptions`` command. |
| 540 | """ |
| 541 | return self.do_exceptions(arg) |
| 542 | |
| 543 | def _cmdloop(self): |
| 544 | # Override to bypass Python 3.15's _maybe_use_pyrepl_as_stdin(), which |
nothing calls this directly
no test coverage detected