MCPcopy Index your code
hub / github.com/python/cpython / __init__

Method __init__

Lib/tarfile.py:744–748  ·  view source on GitHub ↗
(self, tarinfo, path)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected