(self)
| 121 | |
| 122 | @unittest.skipUnless(hasattr(os, 'wait4'), 'requires wait4()') |
| 123 | def test_wait4(self): |
| 124 | self._test_wait_single(lambda pid: os.wait4(pid, 0)) |
| 125 | |
| 126 | def _interrupted_reads(self): |
| 127 | """Make a fd which will force block on read of expected bytes.""" |
nothing calls this directly
no test coverage detected