Searched refs:unpack_archive (Results 1 – 8 of 8) sorted by relevance
/third_party/python/Doc/library/ |
D | shutil.rst | 646 .. 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/ |
D | test_shutil.py | 21 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/ |
D | common.py | 384 def unpack_archive( archive_path ): member in utils
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0b2.rst | 323 Fix :exc:`MemoryError` in :func:`shutil.unpack_archive` which fails inside
|
D | 3.7.0a1.rst | 2913 Fix PathLike support for shutil.unpack_archive. Patch by Jelle Zijlstra.
|
/third_party/python/Lib/ |
D | shutil.py | 1224 def unpack_archive(filename, extract_dir=None, format=None): function
|
/third_party/python/Doc/whatsnew/ |
D | 3.2.rst | 1557 :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/ |
D | HISTORY | 9947 - Issue #11560: shutil.unpack_archive now correctly handles the format 13479 - Issue #8295: Added shutil.unpack_archive.
|