(self, tarinfo)
| 724 | |
| 725 | class AbsolutePathError(FilterError): |
| 726 | def __init__(self, tarinfo): |
| 727 | self.tarinfo = tarinfo |
| 728 | super().__init__(f'member {tarinfo.name!r} has an absolute path') |
| 729 | |
| 730 | class OutsideDestinationError(FilterError): |
| 731 | def __init__(self, tarinfo, path): |