(self, exc: BaseException)
| 2590 | self.run(target.code) |
| 2591 | |
| 2592 | def _format_exc(self, exc: BaseException): |
| 2593 | return traceback.format_exception_only(exc)[-1].strip() |
| 2594 | |
| 2595 | def _compile_error_message(self, expr): |
| 2596 | """Return the error message as string if compiling `expr` fails.""" |
no test coverage detected