(self)
| 371 | @unittest.skipIf(sys.platform == "darwin", |
| 372 | "hangs under macOS; see bpo-25234, bpo-35363") |
| 373 | def test_open(self): |
| 374 | self._test_open("fp = open(path, 'r')\nfp.close()", |
| 375 | self.python_open) |
| 376 | |
| 377 | def os_open(self, path): |
| 378 | fd = os.open(path, os.O_WRONLY) |
nothing calls this directly
no test coverage detected