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