(self)
| 108 | |
| 109 | @unittest.skipUnless(hasattr(os, 'wait3'), 'requires wait3()') |
| 110 | def test_wait3(self): |
| 111 | self._test_wait_multiple(lambda: os.wait3(0)) |
| 112 | |
| 113 | def _test_wait_single(self, wait_func): |
| 114 | proc = self.new_sleep_process() |
nothing calls this directly
no test coverage detected