(self)
| 1380 | t.tell() |
| 1381 | |
| 1382 | def test_issue35928(self): |
| 1383 | p = self.BufferedRWPair(self.BytesIO(b'foo\nbar\n'), self.BytesIO()) |
| 1384 | f = self.TextIOWrapper(p) |
| 1385 | res = f.readline() |
| 1386 | self.assertEqual(res, 'foo\n') |
| 1387 | f.write(res) |
| 1388 | self.assertEqual(res + f.readline(), 'foo\nbar\n') |
| 1389 | |
| 1390 | def test_pickling_subclass(self): |
| 1391 | global MyTextIO |
nothing calls this directly
no test coverage detected