(self)
| 1290 | self.assertEqual(b"XYZ", read_func(bufio, 3)) |
| 1291 | |
| 1292 | def test_flush_and_read(self): |
| 1293 | self.check_flush_and_read(lambda bufio, *args: bufio.read(*args)) |
| 1294 | |
| 1295 | def test_flush_and_readinto(self): |
| 1296 | def _readinto(bufio, n=-1): |
nothing calls this directly
no test coverage detected