Home
last modified time | relevance | path

Searched refs:tarfile (Results 1 - 19 of 19) sorted by relevance

/third_party/python/Lib/test/
H A Dtest_tarfile.py15 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 Dtest_shutil.py25 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 Dtarfile.py3 # 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 Dshutil.py927 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 Dtest_pypi_packages.py6 import tarfile namespace
42 if tarfile.is_tarfile(filename):
43 tarfile.open(filename).extractall(savedir)
/third_party/node/tools/configure.d/
H A Dnodedownload.py8 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 Darchive_util.py90 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 Dextract.py20 import tarfile namespace
69 with tarfile.open(path, 'r:' + compression) as tar_file:
/third_party/python/Lib/distutils/tests/
H A Dtest_sdist.py3 import tarfile namespace
433 archive = tarfile.open(archive_name)
460 archive = tarfile.open(archive_name)
478 archive = tarfile.open(archive_name)
H A Dtest_archive_util.py6 import tarfile namespace
123 tar = tarfile.open(path)
384 archive = tarfile.open(archive_name)
/third_party/harfbuzz/
H A Dinstall.py16 import tarfile namespace
/third_party/libpng/
H A Dinstall.py16 import tarfile namespace
/third_party/libffi/
H A Dinstall.py16 import tarfile namespace
/third_party/freetype/
H A Dinstall.py16 import tarfile namespace
/third_party/cups/
H A Dinstall.py16 import tarfile namespace
/third_party/libjpeg-turbo/
H A Dinstall.py16 import tarfile namespace
/third_party/python/Tools/ssl/
H A Dmultissltests.py41 import tarfile namespace
279 tf = tarfile.open(self.src_file)
/third_party/vk-gl-cts/external/
H A Dfetch_sources.py26 import tarfile namespace
157 archive = tarfile.open(srcPath)
/third_party/vk-gl-cts/scripts/
H A Dmake_release.py32 import tarfile namespace
359 archive = tarfile.open(dstArchiveName, 'w:bz2')

Completed in 25 milliseconds