Home
last modified time | relevance | path

Searched refs:unpack_archive (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Doc/library/
Dshutil.rst646 .. function:: unpack_archive(filename[, extract_dir[, format]])
655 :func:`register_unpack_format`. If not provided, :func:`unpack_archive`
660 .. audit-event:: shutil.unpack_archive filename,extract_dir,format shutil.unpack_archive
/third_party/python/Lib/test/
Dtest_shutil.py21 get_archive_formats, Error, unpack_archive,
1602 unpack_archive(converter(filename), converter(tmpdir2))
1607 unpack_archive(converter(filename), converter(tmpdir3), format=format)
1610 self.assertRaises(shutil.ReadError, unpack_archive, converter(TESTFN))
1611 self.assertRaises(ValueError, unpack_archive, converter(TESTFN), format='xxx')
1643 unpack_archive('stuff.boo', 'xx')
/third_party/boost/libs/predef/tools/ci/
Dcommon.py384 def unpack_archive( archive_path ): member in utils
/third_party/python/Misc/NEWS.d/
D3.10.0b2.rst323 Fix :exc:`MemoryError` in :func:`shutil.unpack_archive` which fails inside
D3.7.0a1.rst2913 Fix PathLike support for shutil.unpack_archive. Patch by Jelle Zijlstra.
/third_party/python/Lib/
Dshutil.py1224 def unpack_archive(filename, extract_dir=None, format=None): function
/third_party/python/Doc/whatsnew/
D3.2.rst1557 :func:`~shutil.unpack_archive`. By default, both operate on the current
1572 >>> shutil.unpack_archive('/var/backup/mydata.zip') # recover the data
/third_party/python/Misc/
DHISTORY9947 - Issue #11560: shutil.unpack_archive now correctly handles the format
13479 - Issue #8295: Added shutil.unpack_archive.