summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-07-29 16:59:24 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-07-29 16:59:24 (GMT)
commitdef35435ee4001f8aedac01b559bb0dc2d0aab00 (patch)
treea3533dae9cb8a88566d6a9304dbc5fbc89ced164 /Misc
parentfe1e298d8bbfbdfd1c2af74dbb74f47e2d04a6d0 (diff)
downloadcpython-def35435ee4001f8aedac01b559bb0dc2d0aab00.zip
cpython-def35435ee4001f8aedac01b559bb0dc2d0aab00.tar.gz
cpython-def35435ee4001f8aedac01b559bb0dc2d0aab00.tar.bz2
Issue #12464: tempfile.TemporaryDirectory.cleanup() should not follow symlinks:
fix it. Patch by Petri Lehtinen.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 820206a..db451d7 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -526,6 +526,7 @@ Vincent Legoll
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 @@ Core and Builtins
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.