diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-07-21 09:04:52 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-21 09:04:52 (GMT) |
commit | 54d387105a5f0c3825a0f4fa607b58d55d05e572 (patch) | |
tree | 7ccbf7b8ef45f77f4b1b256c414d1c4eb80c006c /Misc/NEWS.d/next | |
parent | 0389426fa4af4dfc8b1d7f3f291932d928392d8b (diff) | |
download | cpython-54d387105a5f0c3825a0f4fa607b58d55d05e572.zip cpython-54d387105a5f0c3825a0f4fa607b58d55d05e572.tar.gz cpython-54d387105a5f0c3825a0f4fa607b58d55d05e572.tar.bz2 |
bpo-30511: Add note on thread safety to shutil.make_archive() (GH-26933) (#27276)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
(cherry picked from commit 64f54b7ccd49764b0304e076bfd79b5482988f53)
Co-authored-by: andrei kulakov <andrei.avk@gmail.com>
Diffstat (limited to 'Misc/NEWS.d/next')
-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. |