Return the next TarInfo object from TarFile object tarfile.
(cls, tarfile)
| 1352 | |
| 1353 | @classmethod |
| 1354 | def fromtarfile(cls, tarfile): |
| 1355 | """Return the next TarInfo object from TarFile object |
| 1356 | tarfile. |
| 1357 | """ |
| 1358 | return cls._fromtarfile(tarfile) |
| 1359 | |
| 1360 | @classmethod |
| 1361 | def _fromtarfile(cls, tarfile, *, dircheck=True): |
no test coverage detected