Return an unfilled ExceptionInfo.
(cls)
| 516 | |
| 517 | @classmethod |
| 518 | def for_later(cls) -> "ExceptionInfo[E]": |
| 519 | """Return an unfilled ExceptionInfo.""" |
| 520 | return cls(None, _ispytest=True) |
| 521 | |
| 522 | def fill_unfilled(self, exc_info: Tuple[Type[E], E, TracebackType]) -> None: |
| 523 | """Fill an unfilled ExceptionInfo created with ``for_later()``.""" |