(self, exc: BaseException)
| 1643 | self.run(target.code) |
| 1644 | |
| 1645 | def _format_exc(self, exc: BaseException): |
| 1646 | return traceback.format_exception_only(exc)[-1].strip() |
| 1647 | |
| 1648 | def _getsourcelines(self, obj): |
| 1649 | # GH-103319 |
no test coverage detected