(self)
| 1945 | self.assertEqual(contents, b"".join(writer._write_stack)) |
| 1946 | |
| 1947 | def test_writes(self): |
| 1948 | self.check_writes(lambda bufio: None) |
| 1949 | |
| 1950 | def test_writes_and_flushes(self): |
| 1951 | self.check_writes(lambda bufio: bufio.flush()) |
nothing calls this directly
no test coverage detected