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

Method __init__

Lib/tarfile.py:724–727  ·  view source on GitHub ↗
(self, tarfile, tarinfo)

Source from the content-addressed store, hash-verified

722class ExFileObject(io.BufferedReader):
723
724 def __init__(self, tarfile, tarinfo):
725 fileobj = _FileInFile(tarfile.fileobj, tarinfo.offset_data,
726 tarinfo.size, tarinfo.name, tarinfo.sparse)
727 super().__init__(fileobj)
728#class ExFileObject
729
730

Callers

nothing calls this directly

Calls 3

_FileInFileClass · 0.85
superClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected