diff options
author | andrei kulakov <andrei.avk@gmail.com> | 2021-07-21 08:33:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-21 08:33:11 (GMT) |
commit | 64f54b7ccd49764b0304e076bfd79b5482988f53 (patch) | |
tree | 7c5440140342208f34dbced92b3b89075ef4d525 /Misc | |
parent | 3b56b3b97d91e2b412ce1b2bcaddcd43ef3d223b (diff) | |
download | cpython-64f54b7ccd49764b0304e076bfd79b5482988f53.zip cpython-64f54b7ccd49764b0304e076bfd79b5482988f53.tar.gz cpython-64f54b7ccd49764b0304e076bfd79b5482988f53.tar.bz2 |
bpo-30511: Add note on thread safety to shutil.make_archive() (#26933)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Documentation/2021-07-20-21-03-18.bpo-30511.eMFkRi.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2021-07-20-21-03-18.bpo-30511.eMFkRi.rst b/Misc/NEWS.d/next/Documentation/2021-07-20-21-03-18.bpo-30511.eMFkRi.rst new file mode 100644 index 0000000..a358fb9 --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2021-07-20-21-03-18.bpo-30511.eMFkRi.rst @@ -0,0 +1,2 @@ +Clarify that :func:`shutil.make_archive` is not thread-safe due to +reliance on changing the current working directory. |