(self)
| 117 | proc.wait() |
| 118 | |
| 119 | def test_waitpid(self): |
| 120 | self._test_wait_single(lambda pid: os.waitpid(pid, 0)) |
| 121 | |
| 122 | @unittest.skipUnless(hasattr(os, 'wait4'), 'requires wait4()') |
| 123 | def test_wait4(self): |
nothing calls this directly
no test coverage detected