(self)
| 2529 | self.check_writes(_peek) |
| 2530 | |
| 2531 | def test_writes_and_reads(self): |
| 2532 | def _read(bufio): |
| 2533 | bufio.seek(-1, 1) |
| 2534 | bufio.read(1) |
| 2535 | self.check_writes(_read) |
| 2536 | |
| 2537 | def test_writes_and_read1s(self): |
| 2538 | def _read1(bufio): |
nothing calls this directly
no test coverage detected