mirror of
https://github.com/python/cpython.git
synced 2025-07-19 17:25:54 +00:00
gh-94844: Add pathlib support to shutil archive management (GH-94846)
Co-authored-by: Barney Gale <barney.gale@gmail.com>
(cherry picked from commit ed4441567e
)
Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
This commit is contained in:
parent
16cb8ca52e
commit
6cc9489a3a
1 changed files with 2 additions and 0 deletions
|
@ -1117,6 +1117,8 @@ def make_archive(base_name, format, root_dir=None, base_dir=None, verbose=0,
|
|||
save_cwd = None
|
||||
if root_dir is not None:
|
||||
if support_root_dir:
|
||||
# Support path-like base_name here for backwards-compatibility.
|
||||
base_name = os.fspath(base_name)
|
||||
kwargs['root_dir'] = root_dir
|
||||
else:
|
||||
save_cwd = os.getcwd()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue