commit | def35435ee4001f8aedac01b559bb0dc2d0aab00 | [log] [tgz] |
---|---|---|
author | Charles-François Natali <neologix@free.fr> | Fri Jul 29 18:59:24 2011 +0200 |
committer | Charles-François Natali <neologix@free.fr> | Fri Jul 29 18:59:24 2011 +0200 |
tree | a3533dae9cb8a88566d6a9304dbc5fbc89ced164 | |
parent | fe1e298d8bbfbdfd1c2af74dbb74f47e2d04a6d0 [diff] [blame] |
Issue #12464: tempfile.TemporaryDirectory.cleanup() should not follow symlinks: fix it. Patch by Petri Lehtinen.
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.