(self)
| 526 | return self.rpcclt |
| 527 | |
| 528 | def __request_interrupt(self): |
| 529 | self.rpcclt.remotecall("exec", "interrupt_the_server", (), {}) |
| 530 | |
| 531 | def interrupt_subprocess(self): |
| 532 | threading.Thread(target=self.__request_interrupt).start() |
nothing calls this directly
no test coverage detected