(self, exc: BaseException)
| 215 | # still considered special. |
| 216 | |
| 217 | def _is_base_error(self, exc: BaseException) -> bool: |
| 218 | assert isinstance(exc, BaseException) |
| 219 | return isinstance(exc, (SystemExit, KeyboardInterrupt)) |
| 220 | |
| 221 | def _abort(self): |
| 222 | self._aborting = True |
no outgoing calls
no test coverage detected