diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-27 09:18:27 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-01-27 09:18:27 (GMT) |
commit | 99e033b02e9f352c484e20d6a6d57954304865b4 (patch) | |
tree | a4d1c1fcc74265b42cbdcb103ecd2d612e69647a /Misc | |
parent | b9915973f3522d3feaa862aaacd4d7d269f6fc72 (diff) | |
download | cpython-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/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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. |