(self)
| 383 | @unittest.skipIf(sys.platform.startswith('netbsd'), |
| 384 | "hangs on NetBSD; see gh-137397") |
| 385 | def test_os_open(self): |
| 386 | self._test_open("fd = os.open(path, os.O_RDONLY)\nos.close(fd)", |
| 387 | self.os_open) |
| 388 | |
| 389 | |
| 390 | @unittest.skipUnless(hasattr(signal, "setitimer"), "requires setitimer()") |
nothing calls this directly
no test coverage detected