(tb_or_exc: types.TracebackType | BaseException)
| 397 | |
| 398 | |
| 399 | def post_mortem(tb_or_exc: types.TracebackType | BaseException) -> None: |
| 400 | p = pytestPDB._init_pdb("post_mortem") |
| 401 | p.reset() |
| 402 | p.interaction(None, tb_or_exc) |
| 403 | if p.quitting: |
| 404 | outcomes.exit("Quitting debugger") |
no test coverage detected