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