(self, process, abort_called)
| 178 | raise NotImplementedError() |
| 179 | |
| 180 | def _abort(self, process, abort_called): |
| 181 | abort_called[0] = True |
| 182 | started_as = self.to_string() |
| 183 | process_text = 'process %d started as:\n %s\n' % (process.pid, started_as) |
| 184 | try: |
| 185 | logging.warning('Attempting to kill %s', process_text) |
| 186 | self._kill_process(process) |
| 187 | except OSError: |
| 188 | logging.exception('Unruly %s', process_text) |
| 189 | |
| 190 | def __str__(self): |
| 191 | return self.to_string() |
nothing calls this directly
no test coverage detected