(self)
| 938 | self.excinfo: Optional[_pytest._code.ExceptionInfo[E]] = None |
| 939 | |
| 940 | def __enter__(self) -> _pytest._code.ExceptionInfo[E]: |
| 941 | self.excinfo = _pytest._code.ExceptionInfo.for_later() |
| 942 | return self.excinfo |
| 943 | |
| 944 | def __exit__( |
| 945 | self, |