summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-24 10:26:25 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-24 10:26:25 (GMT)
commit5e193ac0bd6bd4d4a122fd9aa2446ee70e5f2bf1 (patch)
tree32b9c686d3e209c51c3d3a0fc812e7a6ebc8ddd1 /Misc
parentb87630c273ab3ff68d4dbee61fe7ec9c65eeccb8 (diff)
downloadcpython-5e193ac0bd6bd4d4a122fd9aa2446ee70e5f2bf1.zip
cpython-5e193ac0bd6bd4d4a122fd9aa2446ee70e5f2bf1.tar.gz
cpython-5e193ac0bd6bd4d4a122fd9aa2446ee70e5f2bf1.tar.bz2
Issue #22427: TemporaryDirectory no longer attempts to clean up twice when
used in the with statement in generator.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f21ece6..5b8cbca 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #22427: TemporaryDirectory no longer attempts to clean up twice when
+ used in the with statement in generator.
+
- Issue #20912: Now directories added to ZIP file have correct Unix and MS-DOS
directory attributes.