(self, tarinfo, path)
| 761 | |
| 762 | class LinkOutsideDestinationError(FilterError): |
| 763 | def __init__(self, tarinfo, path): |
| 764 | self.tarinfo = tarinfo |
| 765 | self._path = path |
| 766 | super().__init__(f'{tarinfo.name!r} would link to {path!r}, ' |
| 767 | + 'which is outside the destination') |
| 768 | |
| 769 | class LinkFallbackError(FilterError): |
| 770 | def __init__(self, tarinfo, path): |