(self)
| 4814 | self.assertEqual(os.get_inheritable(fd2), False) |
| 4815 | |
| 4816 | def test_dup_standard_stream(self): |
| 4817 | fd = os.dup(1) |
| 4818 | self.addCleanup(os.close, fd) |
| 4819 | self.assertGreater(fd, 0) |
| 4820 | |
| 4821 | @unittest.skipUnless(sys.platform == 'win32', 'win32-specific test') |
| 4822 | def test_dup_nul(self): |
nothing calls this directly
no test coverage detected