Issue #12464: tempfile.TemporaryDirectory.cleanup() should not follow symlinks:
fix it. Patch by Petri Lehtinen.
diff --git a/Misc/ACKS b/Misc/ACKS
index 820206a..db451d7 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -526,6 +526,7 @@
Kip Lehman
Joerg Lehmann
Robert Lehmann
+Petri Lehtinen
Luke Kenneth Casson Leighton
Marc-Andre Lemburg
John Lenton
diff --git a/Misc/NEWS b/Misc/NEWS
index 1021df7..b080316 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,9 @@
Library
-------
+- Issue #12464: tempfile.TemporaryDirectory.cleanup() should not follow
+ symlinks: fix it. Patch by Petri Lehtinen.
+
- Issue #8887: "pydoc somebuiltin.somemethod" (or help('somebuiltin.somemethod')
in Python code) now finds the doc of the method.