(self)
| 81 | self._kill(signal.SIGTERM) |
| 82 | |
| 83 | def test_kill_int(self): |
| 84 | # os.kill on Windows can take an int which gets set as the exit code |
| 85 | self._kill(100) |
| 86 | |
| 87 | @unittest.skipIf(mmap is None, "requires mmap") |
| 88 | def _kill_with_event(self, event, name): |