(self, tarfile, tarinfo)
| 722 | class 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 |
nothing calls this directly
no test coverage detected