(self, *args, **kwargs)
| 309 | # Runner that fakes ^C during subprocess exec |
| 310 | class _KeyboardInterruptingRunner(_Dummy): |
| 311 | def __init__(self, *args, **kwargs): |
| 312 | super().__init__(*args, **kwargs) |
| 313 | self._interrupted = False |
| 314 | |
| 315 | # Trigger KeyboardInterrupt during wait() |
| 316 | def wait(self): |