(self, excinfo: ExceptionInfo[BaseException])
| 297 | _enter_pdb(node, call.excinfo, report) |
| 298 | |
| 299 | def pytest_internalerror(self, excinfo: ExceptionInfo[BaseException]) -> None: |
| 300 | exc_or_tb = _postmortem_exc_or_tb(excinfo) |
| 301 | post_mortem(exc_or_tb) |
| 302 | |
| 303 | |
| 304 | class PdbTrace: |
nothing calls this directly
no test coverage detected