(self)
| 3501 | self.assertEqual(reads, self.normalized) |
| 3502 | |
| 3503 | def test_issue1395_5(self): |
| 3504 | txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii") |
| 3505 | txt._CHUNK_SIZE = 4 |
| 3506 | |
| 3507 | reads = txt.read(4) |
| 3508 | pos = txt.tell() |
| 3509 | txt.seek(0) |
| 3510 | txt.seek(pos) |
| 3511 | self.assertEqual(txt.read(4), "BBB\n") |
| 3512 | |
| 3513 | def test_issue2282(self): |
| 3514 | buffer = self.BytesIO(self.testdata) |
nothing calls this directly
no test coverage detected