(self)
| 1732 | |
| 1733 | @support.requires_subprocess() |
| 1734 | def test_open_non_inheritable(self): |
| 1735 | fileobj = open(__file__, encoding="utf-8") |
| 1736 | with fileobj: |
| 1737 | self.assertFalse(os.get_inheritable(fileobj.fileno())) |
| 1738 | |
| 1739 | def test_ord(self): |
| 1740 | self.assertEqual(ord(' '), 32) |
nothing calls this directly
no test coverage detected