Fill an unfilled ExceptionInfo created with ``for_later()``.
(self, exc_info: Tuple[Type[E], E, TracebackType])
| 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()``.""" |
| 524 | assert self._excinfo is None, "ExceptionInfo was already filled" |
| 525 | self._excinfo = exc_info |
| 526 | |
| 527 | @property |
| 528 | def type(self) -> Type[E]: |