(self)
| 449 | self._check_base_destructor(self.TextIOBase) |
| 450 | |
| 451 | def test_close_flushes(self): |
| 452 | with self.open(os_helper.TESTFN, "wb") as f: |
| 453 | f.write(b"xxx") |
| 454 | with self.open(os_helper.TESTFN, "rb") as f: |
| 455 | self.assertEqual(f.read(), b"xxx") |
| 456 | |
| 457 | def test_array_writes(self): |
| 458 | a = array.array('i', range(10)) |
nothing calls this directly
no test coverage detected