(self)
| 1682 | |
| 1683 | @support.requires_subprocess() |
| 1684 | def test_open_non_inheritable(self): |
| 1685 | fileobj = open(__file__, encoding="utf-8") |
| 1686 | with fileobj: |
| 1687 | self.assertFalse(os.get_inheritable(fileobj.fileno())) |
| 1688 | |
| 1689 | def test_ord(self): |
| 1690 | self.assertEqual(ord(' '), 32) |
nothing calls this directly
no test coverage detected