(self)
| 728 | self.assertEqual(contents, b"".join(writer._write_stack)) |
| 729 | |
| 730 | def test_writes(self): |
| 731 | self.check_writes(lambda bufio: None) |
| 732 | |
| 733 | def test_writes_and_flushes(self): |
| 734 | self.check_writes(lambda bufio: bufio.flush()) |
nothing calls this directly
no test coverage detected