(self)
| 2600 | self.assertRaises(tarfile.ReadError, self._add_testfile) |
| 2601 | |
| 2602 | def test_null(self): |
| 2603 | self._test_error(b"") |
| 2604 | |
| 2605 | def test_incomplete(self): |
| 2606 | self._test_error(b"\0" * 13) |
nothing calls this directly
no test coverage detected