(self)
| 2617 | self.assertRaises(tarfile.ReadError, self._add_testfile) |
| 2618 | |
| 2619 | def test_null(self): |
| 2620 | self._test_error(b"") |
| 2621 | |
| 2622 | def test_incomplete(self): |
| 2623 | self._test_error(b"\0" * 13) |
nothing calls this directly
no test coverage detected