(self)
| 2541 | self.check_writes(_read1) |
| 2542 | |
| 2543 | def test_writes_and_readintos(self): |
| 2544 | def _read(bufio): |
| 2545 | bufio.seek(-1, 1) |
| 2546 | bufio.readinto(bytearray(1)) |
| 2547 | self.check_writes(_read) |
| 2548 | |
| 2549 | def test_write_after_readahead(self): |
| 2550 | # Issue #6629: writing after the buffer was filled by readahead should |
nothing calls this directly
no test coverage detected