summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-09-24 10:29:27 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-09-24 10:29:27 (GMT)
commite9a086bf010626d0e0af54693db776ccda76b5c4 (patch)
treeddf028fb988807e8c612681d7d608ac82a1f51ba /Misc/NEWS
parent43705d76aa39a9517ffa5fa124f9333a7874fbd9 (diff)
parent5e193ac0bd6bd4d4a122fd9aa2446ee70e5f2bf1 (diff)
downloadcpython-e9a086bf010626d0e0af54693db776ccda76b5c4.zip
cpython-e9a086bf010626d0e0af54693db776ccda76b5c4.tar.gz
cpython-e9a086bf010626d0e0af54693db776ccda76b5c4.tar.bz2
Issue #22427: TemporaryDirectory no longer attempts to clean up twice when
used in the with statement in generator.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9c6f7db..1d0a676 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,9 @@ Core and Builtins
Library
-------
+- Issue #22427: TemporaryDirectory no longer attempts to clean up twice when
+ used in the with statement in generator.
+
- Issue #22362: Forbidden ambiguous octal escapes out of range 0-0o377 in
regular expressions.