Searched refs:TarFile (Results 1 - 3 of 3) sorted by relevance
/third_party/node/tools/configure.d/ |
H A D | nodedownload.py | 79 with contextlib.closing(tarfile.TarFile.open(packedfile, 'r')) as icuzip:
|
/third_party/python/Lib/test/ |
H A D | test_tarfile.py | 64 taropen = tarfile.TarFile.taropen 75 taropen = tarfile.TarFile.gzopen 82 taropen = tarfile.TarFile.bz2open 89 taropen = tarfile.TarFile.xzopen 436 # Test TarFile's ignore_zeros option. 542 with tarfile.TarFile.open(tarname, mode=self.mode) as tar: 546 with tarfile.TarFile(tarname, mode='r') as tar: 715 # Issue #7341: Close the internal file object in the TarFile 723 tar = object.__new__(tarfile.TarFile) 794 "TarFile [all...] |
/third_party/python/Lib/ |
H A D | tarfile.py | 70 __all__ = ["TarFile", "TarInfo", "is_tarfile", "TarError", "ReadError", 333 """Class that serves as an adapter between TarFile and 843 TarInfo objects are returned by TarFile.getmember(), 844 TarFile.getmembers() and TarFile.gettarinfo() and are 1285 """Return the next TarInfo object from TarFile object 1637 class TarFile(object): class 1638 """The TarFile Class provides an interface to tar archives. 1675 `fileobj' is not closed, when TarFile is closed. 1767 # TarFile clas [all...] |
Completed in 6 milliseconds