(self)
| 428 | self.kwargs = kwargs |
| 429 | |
| 430 | def __enter__(self): |
| 431 | self.oldstate = seterr(**self.kwargs) |
| 432 | if self.call is not _Unspecified: |
| 433 | self.oldcall = seterrcall(self.call) |
| 434 | |
| 435 | def __exit__(self, *exc_info): |
| 436 | seterr(**self.oldstate) |
nothing calls this directly
no test coverage detected