(self)
| 841 | self.assertEqual(reads, self.normalized) |
| 842 | |
| 843 | def test_issue1395_5(self): |
| 844 | txt = self.TextIOWrapper(self.BytesIO(self.testdata), encoding="ascii") |
| 845 | txt._CHUNK_SIZE = 4 |
| 846 | |
| 847 | reads = txt.read(4) |
| 848 | pos = txt.tell() |
| 849 | txt.seek(0) |
| 850 | txt.seek(pos) |
| 851 | self.assertEqual(txt.read(4), "BBB\n") |
| 852 | |
| 853 | def test_issue2282(self): |
| 854 | buffer = self.BytesIO(self.testdata) |
nothing calls this directly
no test coverage detected