(self)
| 574 | os.close(fd) |
| 575 | |
| 576 | def test_multi_close(self): |
| 577 | f = self.open(os_helper.TESTFN, "wb", buffering=0) |
| 578 | f.close() |
| 579 | f.close() |
| 580 | f.close() |
| 581 | self.assertRaises(ValueError, f.flush) |
| 582 | |
| 583 | def test_RawIOBase_read(self): |
| 584 | # Exercise the default limited RawIOBase.read(n) implementation (which |
nothing calls this directly
no test coverage detected