Terminate process; sends SIGKILL signal or uses TerminateProcess()
(self)
| 140 | self._popen.terminate() |
| 141 | |
| 142 | def kill(self): |
| 143 | ''' |
| 144 | Terminate process; sends SIGKILL signal or uses TerminateProcess() |
| 145 | ''' |
| 146 | self._check_closed() |
| 147 | self._popen.kill() |
| 148 | |
| 149 | def join(self, timeout=None): |
| 150 | ''' |
nothing calls this directly
no test coverage detected