/third_party/python/Lib/test/ |
H A D | test_tarfile.py | 15 import tarfile namespace 64 taropen = tarfile.TarFile.taropen 75 taropen = tarfile.TarFile.gzopen 82 taropen = tarfile.TarFile.bz2open 89 taropen = tarfile.TarFile.xzopen 97 self.tar = tarfile.open(self.tarname, mode=self.mode, 242 with tarfile.open(tmpname, 'w') as tar: 243 tar.format = tarfile.USTAR_FORMAT 249 with tarfile.open(tmpname) as tar: 269 self.tar = tarfile [all...] |
H A D | test_shutil.py | 25 import tarfile namespace 1361 self.assertTrue(tarfile.is_tarfile(tarball)) 1362 with tarfile.open(tarball, 'r:gz') as tf: 1372 self.assertTrue(tarfile.is_tarfile(tarball)) 1373 with tarfile.open(tarball, 'r') as tf: 1379 with tarfile.open(path) as tar: 1571 archive = tarfile.open(archive_name)
|
/third_party/python/Lib/ |
H A D | tarfile.py | 3 # tarfile.py 69 # from tarfile import * 91 LNKTYPE = b"1" # link (inside tarfile) 113 # tarfile constants 115 # File types that tarfile supports: 710 def __init__(self, tarfile, tarinfo): 711 fileobj = _FileInFile(tarfile.fileobj, tarinfo.offset_data, 870 tarfile = None, variable in TarInfo 1284 def fromtarfile(cls, tarfile): 1286 tarfile [all...] |
H A D | shutil.py | 927 import tarfile # late import for breaking circular dependency namespace 956 tar = tarfile.open(archive_name, 'w|%s' % tar_compression) 1237 import tarfile # late import for breaking circular dependency namespace 1239 tarobj = tarfile.open(filename) 1240 except tarfile.TarError:
|
/third_party/python/Tools/peg_generator/scripts/ |
H A D | test_pypi_packages.py | 6 import tarfile namespace 42 if tarfile.is_tarfile(filename): 43 tarfile.open(filename).extractall(savedir)
|
/third_party/node/tools/configure.d/ |
H A D | nodedownload.py | 8 import tarfile namespace 78 elif tarfile.is_tarfile(packedfile): 79 with contextlib.closing(tarfile.TarFile.open(packedfile, 'r')) as icuzip: 80 print(' Extracting tarfile: %s' % packedfile)
|
/third_party/python/Lib/distutils/ |
H A D | archive_util.py | 90 import tarfile # late import so Python build itself doesn't break namespace 107 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
|
/third_party/skia/third_party/externals/dawn/scripts/ |
H A D | extract.py | 20 import tarfile namespace 69 with tarfile.open(path, 'r:' + compression) as tar_file:
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_sdist.py | 3 import tarfile namespace 433 archive = tarfile.open(archive_name) 460 archive = tarfile.open(archive_name) 478 archive = tarfile.open(archive_name)
|
H A D | test_archive_util.py | 6 import tarfile namespace 123 tar = tarfile.open(path) 384 archive = tarfile.open(archive_name)
|
/third_party/harfbuzz/ |
H A D | install.py | 16 import tarfile namespace
|
/third_party/libpng/ |
H A D | install.py | 16 import tarfile namespace
|
/third_party/libffi/ |
H A D | install.py | 16 import tarfile namespace
|
/third_party/freetype/ |
H A D | install.py | 16 import tarfile namespace
|
/third_party/cups/ |
H A D | install.py | 16 import tarfile namespace
|
/third_party/libjpeg-turbo/ |
H A D | install.py | 16 import tarfile namespace
|
/third_party/python/Tools/ssl/ |
H A D | multissltests.py | 41 import tarfile namespace 279 tf = tarfile.open(self.src_file)
|
/third_party/vk-gl-cts/external/ |
H A D | fetch_sources.py | 26 import tarfile namespace 157 archive = tarfile.open(srcPath)
|
/third_party/vk-gl-cts/scripts/ |
H A D | make_release.py | 32 import tarfile namespace 359 archive = tarfile.open(dstArchiveName, 'w:bz2')
|