mirror of
https://github.com/python/cpython.git
synced 2025-08-02 16:13:13 +00:00
bpo-30511: Add note on thread safety to shutil.make_archive() (GH-26933) (GH-27274)
Co-authored-by: Łukasz Langa <lukasz@langa.pl>
(cherry picked from commit 64f54b7ccd
)
Co-authored-by: andrei kulakov <andrei.avk@gmail.com>
This commit is contained in:
parent
68b4690b01
commit
d17449f31d
2 changed files with 6 additions and 0 deletions
|
@ -595,6 +595,10 @@ provided. They rely on the :mod:`zipfile` and :mod:`tarfile` modules.
|
|||
|
||||
.. audit-event:: shutil.make_archive base_name,format,root_dir,base_dir shutil.make_archive
|
||||
|
||||
.. note::
|
||||
|
||||
This function is not thread-safe.
|
||||
|
||||
.. versionchanged:: 3.8
|
||||
The modern pax (POSIX.1-2001) format is now used instead of
|
||||
the legacy GNU format for archives created with ``format="tar"``.
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
Clarify that :func:`shutil.make_archive` is not thread-safe due to
|
||||
reliance on changing the current working directory.
|
Loading…
Add table
Add a link
Reference in a new issue