summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-01-27 09:18:27 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-01-27 09:18:27 (GMT)
commit99e033b02e9f352c484e20d6a6d57954304865b4 (patch)
treea4d1c1fcc74265b42cbdcb103ecd2d612e69647a /Misc
parentb9915973f3522d3feaa862aaacd4d7d269f6fc72 (diff)
downloadcpython-99e033b02e9f352c484e20d6a6d57954304865b4.zip
cpython-99e033b02e9f352c484e20d6a6d57954304865b4.tar.gz
cpython-99e033b02e9f352c484e20d6a6d57954304865b4.tar.bz2
Issue #19077: tempfile.TemporaryDirectory cleanup is now most likely
successful when called during nulling out of modules during shutdown. Misleading exception no longer raised when resource warning is emitted during shutdown.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7062211..8392d0b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,11 @@ Core and Builtins
Library
-------
+- Issue #19077: tempfile.TemporaryDirectory cleanup is now most likely
+ successful when called during nulling out of modules during shutdown.
+ Misleading exception no longer raised when resource warning is emitted
+ during shutdown.
+
- Issue #20367: Fix behavior of concurrent.futures.as_completed() for
duplicate arguments. Patch by Glenn Langford.