(self)
| 1340 | self.assertEqual(f.tell(), len(INPUT)) |
| 1341 | |
| 1342 | def test_tell_bad_args(self): |
| 1343 | f = LZMAFile(BytesIO(COMPRESSED_XZ)) |
| 1344 | f.close() |
| 1345 | self.assertRaises(ValueError, f.tell) |
| 1346 | |
| 1347 | def test_issue21872(self): |
| 1348 | # sometimes decompress data incompletely |
nothing calls this directly
no test coverage detected