(self)
| 87 | self.child_conn.close() |
| 88 | |
| 89 | def kill(self) -> None: |
| 90 | # In Windows, the method will call `TerminateProcess` to kill the process. |
| 91 | # In Unix, the method will send SIGKILL to the process. |
| 92 | self.process.kill() |
| 93 | |
| 94 | def join(self) -> None: |
| 95 | logger.info(f"Waiting for child process [{self.process.pid}]") |
no outgoing calls