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

Method __init__

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

Source from the content-addressed store, hash-verified

766
767class LinkFallbackError(FilterError):
768 def __init__(self, tarinfo, path):
769 self.tarinfo = tarinfo
770 self._path = path
771 super().__init__(f'link {tarinfo.name!r} would be extracted as a '
772 + f'copy of {path!r}, which was rejected')
773
774# Errors caused by filters -- both "fatal" and "non-fatal" -- that
775# we consider to be issues with the argument, rather than a bug in the

Callers

nothing calls this directly

Calls 2

superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected