(self, tarinfo, path)
| 742 | |
| 743 | class OutsideDestinationError(FilterError): |
| 744 | def __init__(self, tarinfo, path): |
| 745 | self.tarinfo = tarinfo |
| 746 | self._path = path |
| 747 | super().__init__(f'{tarinfo.name!r} would be extracted to {path!r}, ' |
| 748 | + 'which is outside the destination') |
| 749 | |
| 750 | class SpecialFileError(FilterError): |
| 751 | def __init__(self, tarinfo): |