(self)
| 2566 | tar.addfile(t, f) |
| 2567 | |
| 2568 | def test_append_compressed(self): |
| 2569 | self._create_testtar("w:" + self.suffix) |
| 2570 | self.assertRaises(tarfile.ReadError, tarfile.open, tmpname, "a") |
| 2571 | |
| 2572 | class AppendTest(AppendTestBase, unittest.TestCase): |
| 2573 | test_append_compressed = None |
nothing calls this directly
no test coverage detected