Home
last modified time | relevance | path

Searched refs:PAX_FORMAT (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_tarfile.py1151 format=tarfile.PAX_FORMAT,
1338 tar = tarfile.open(tmpname, "w", format=tarfile.PAX_FORMAT)
1363 tar = tarfile.open(tmpname, "w", format=tarfile.PAX_FORMAT,
1393 tar = tarfile.open(tmpname, "w", format=tarfile.PAX_FORMAT, encoding="iso8859-1")
1448 if self.format == tarfile.PAX_FORMAT:
1500 format = tarfile.PAX_FORMAT
1669 tarinfo.tobuf(tarfile.PAX_FORMAT)
1673 tarinfo.tobuf(tarfile.PAX_FORMAT)
1677 tarinfo.tobuf(tarfile.PAX_FORMAT)
/external/python/cpython2/Doc/library/
Dtarfile.rst213 .. data:: PAX_FORMAT
277 :const:`USTAR_FORMAT`, :const:`GNU_FORMAT` or :const:`PAX_FORMAT` that are
311 will be added as a pax global header if *format* is :const:`PAX_FORMAT`.
733 * The POSIX.1-2001 pax format (:const:`PAX_FORMAT`). It is the most flexible
782 *encoding* depends on the chosen archive format. In case of :const:`PAX_FORMAT`,
/external/python/cpython2/Lib/
Dtarfile.py97 PAX_FORMAT = 2 # POSIX.1-2001 (pax) format variable
1009 elif format == PAX_FORMAT:
1565 if pax_headers is not None and self.format == PAX_FORMAT:
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2443 format=tarfile.PAX_FORMAT)