(self, tarinfo)
| 737 | |
| 738 | class AbsolutePathError(FilterError): |
| 739 | def __init__(self, tarinfo): |
| 740 | self.tarinfo = tarinfo |
| 741 | super().__init__(f'member {tarinfo.name!r} has an absolute path') |
| 742 | |
| 743 | class OutsideDestinationError(FilterError): |
| 744 | def __init__(self, tarinfo, path): |