(self)
| 2481 | self.assertEqual(b"XYZ", read_func(bufio, 3)) |
| 2482 | |
| 2483 | def test_flush_and_read(self): |
| 2484 | self.check_flush_and_read(lambda bufio, *args: bufio.read(*args)) |
| 2485 | |
| 2486 | def test_flush_and_readinto(self): |
| 2487 | def _readinto(bufio, n=-1): |
nothing calls this directly
no test coverage detected