(self, signum, frame)
| 50 | |
| 51 | # --- signal-based (Unix) ------------------------------------------- |
| 52 | def _handler(self, signum, frame): |
| 53 | raise BenchTimeoutError(f"Timed out after {self.seconds}s") |
| 54 | |
| 55 | def __enter__(self): |
| 56 | if self._use_signal: |
nothing calls this directly
no test coverage detected