Terminate process; sends SIGINT signal
(self)
| 126 | _children.add(self) |
| 127 | |
| 128 | def interrupt(self): |
| 129 | ''' |
| 130 | Terminate process; sends SIGINT signal |
| 131 | ''' |
| 132 | self._check_closed() |
| 133 | self._popen.interrupt() |
| 134 | |
| 135 | def terminate(self): |
| 136 | ''' |
nothing calls this directly
no test coverage detected