(self)
| 754 | self._check_base_destructor(self.TextIOBase) |
| 755 | |
| 756 | def test_close_flushes(self): |
| 757 | with self.open(os_helper.TESTFN, "wb") as f: |
| 758 | f.write(b"xxx") |
| 759 | with self.open(os_helper.TESTFN, "rb") as f: |
| 760 | self.assertEqual(f.read(), b"xxx") |
| 761 | |
| 762 | def test_array_writes(self): |
| 763 | a = array.array('i', range(10)) |
nothing calls this directly
no test coverage detected