diff options
author | E-Paine <63801254+E-Paine@users.noreply.github.com> | 2021-08-29 11:07:51 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-29 11:07:51 (GMT) |
commit | c9227df5a9d8e958a2324cf0deba8524d1ded26a (patch) | |
tree | b8d3f4bb4d9148babb25405f82ba6e2767a489a3 /Misc/NEWS.d/next/Security | |
parent | 2a8127cafe1d196f858a3ecabf5f1df3eebf9a12 (diff) | |
download | cpython-c9227df5a9d8e958a2324cf0deba8524d1ded26a.zip cpython-c9227df5a9d8e958a2324cf0deba8524d1ded26a.tar.gz cpython-c9227df5a9d8e958a2324cf0deba8524d1ded26a.tar.bz2 |
bpo-42278: Use tempfile.TemporaryDirectory rather than tempfile.mktemp in pydoc (GH-23200)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
Diffstat (limited to 'Misc/NEWS.d/next/Security')
-rw-r--r-- | Misc/NEWS.d/next/Security/2021-08-29-12-39-44.bpo-42278.jvmQz_.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Security/2021-08-29-12-39-44.bpo-42278.jvmQz_.rst b/Misc/NEWS.d/next/Security/2021-08-29-12-39-44.bpo-42278.jvmQz_.rst new file mode 100644 index 0000000..db880cd --- /dev/null +++ b/Misc/NEWS.d/next/Security/2021-08-29-12-39-44.bpo-42278.jvmQz_.rst @@ -0,0 +1,2 @@ +Replaced usage of :func:`tempfile.mktemp` with +:class:`~tempfile.TemporaryDirectory` to avoid a potential race condition. |