(self)
| 1000 | self.check_forkserver_death(signal.SIGINT) |
| 1001 | |
| 1002 | def test_forkserver_sigkill(self): |
| 1003 | # Uncatchable signal |
| 1004 | if os.name != 'nt': |
| 1005 | self.check_forkserver_death(signal.SIGKILL) |
| 1006 | |
| 1007 | def test_forkserver_auth_is_enabled(self): |
| 1008 | if self.TYPE == "threads": |
nothing calls this directly
no test coverage detected