Searched refs:TarFile (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Doc/library/ |
D | tarfile.rst | 43 Return a :class:`TarFile` object for the pathname *name*. For detailed 44 information on :class:`TarFile` objects and the keyword arguments that are 86 ``'filemode|[compression]'``. :func:`tarfile.open` will return a :class:`TarFile` 92 device. However, such a :class:`TarFile` object is limited in that it does 121 .. class:: TarFile 173 Is raised for the limitations that are typical for stream-like :class:`TarFile` 179 Is raised for *non-fatal* errors when using :meth:`TarFile.extract`, but only if 180 :attr:`TarFile.errorlevel`\ ``== 2``. 238 TarFile Objects 241 The :class:`TarFile` object provides an interface to a tar archive. A tar [all …]
|
/external/jsoncpp/devtools/ |
D | tarball.py | 32 tar = tarfile.TarFile.gzopen( tarball_path, 'w', compresslevel=compression ) 49 tar = tarfile.TarFile.gzopen(tarball_path, mode='r')
|
/external/jsoncpp/scons-tools/ |
D | targz.py | 45 tar = tarfile.TarFile(os.path.splitext(target_path)[0], 'w', fileobj)
|
/external/python/cpython2/Lib/test/ |
D | test_tarfile.py | 227 taropen = tarfile.TarFile.gzopen 233 taropen = tarfile.TarFile.bz2open 326 taropen = tarfile.TarFile.taropen 479 tar = object.__new__(tarfile.TarFile) 1772 taropen = tarfile.TarFile.gzopen 1788 taropen = tarfile.TarFile.bz2open
|
/external/python/cpython2/Lib/ |
D | tarfile.py | 1487 class TarFile(object): class 2576 self.tarfile = TarFile.taropen(file, mode) 2578 self.tarfile = TarFile.gzopen(file, mode) 2630 open = TarFile.open
|
/external/python/cpython2/Misc/ |
D | NEWS | 2218 - Issue #20243: TarFile no longer raise ReadError when opened in write mode. 2421 - Issue #19920: Added tests for TarFile.list(). Based on patch by Vajrasky Kok. 3788 - Issue #14160: TarFile.extractfile() failed to resolve symbolic links when 6808 ``tarfile.TarFile`` class. 7791 - Issue #7341: Close the internal file object in the TarFile constructor in case 7917 - Issue #6856: Add a filter keyword argument to TarFile.add(). 8637 - Issue #4616: TarFile.utime(): Restore directory times on Windows. 9806 when the TarFile is closed. 11065 - Issue #1735: TarFile.extractall() now correctly sets directory 11148 - TarFile.__init__() no longer fails if no name argument is passed and [all …]
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 1607 objects being added to a tar file. When you call :meth:`~tarfile.TarFile.add`, 1615 The :class:`~tarfile.TarFile` class also now supports the context management protocol.
|
D | 2.5.rst | 1584 * The :class:`TarFile` class in the :mod:`tarfile` module now has an
|
D | 2.6.rst | 2453 The :meth:`TarFile.add` method now accepts an ``exclude`` argument that's
|