(self)
| 1328 | BufferedWriterTest.test_threads(self) |
| 1329 | |
| 1330 | def test_writes_and_peek(self): |
| 1331 | def _peek(bufio): |
| 1332 | bufio.peek(1) |
| 1333 | self.check_writes(_peek) |
| 1334 | def _peek(bufio): |
| 1335 | pos = bufio.tell() |
| 1336 | bufio.seek(-1, 1) |
| 1337 | bufio.peek(1) |
| 1338 | bufio.seek(pos, 0) |
| 1339 | self.check_writes(_peek) |
| 1340 | |
| 1341 | def test_writes_and_reads(self): |
| 1342 | def _read(bufio): |
nothing calls this directly
no test coverage detected