(self)
| 273 | self.ex: _ExcInfoType | None = None |
| 274 | |
| 275 | def run(self) -> None: |
| 276 | try: |
| 277 | super().run() |
| 278 | except Exception: # pragma: no cover # a worker that raises fails the test; a healthy run never lands here |
| 279 | self.ex = sys.exc_info() |
| 280 | |
| 281 | def join(self, timeout: float | None = None) -> None: |
| 282 | super().join(timeout=timeout) |
no outgoing calls
no test coverage detected