diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-11-12 15:37:55 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-11-12 15:37:55 (GMT) |
commit | 45956b9a33af634a2919ade64c1dd223ab2d5235 (patch) | |
tree | 6ce6544601bc17c71eb6cacec9f3e0610847affa /Misc | |
parent | c6a140f330178ea8df83fae003ebbccc50b24a2c (diff) | |
download | cpython-45956b9a33af634a2919ade64c1dd223ab2d5235.zip cpython-45956b9a33af634a2919ade64c1dd223ab2d5235.tar.gz cpython-45956b9a33af634a2919ade64c1dd223ab2d5235.tar.bz2 |
Close #19466: Clear the frames of daemon threads earlier during the Python
shutdown to call objects destructors. So "unclosed file" resource warnings are
now corretly emitted for daemon threads.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ Projected release date: 2013-11-24 Core and Builtins ----------------- +- Issue #19466: Clear the frames of daemon threads earlier during the + Python shutdown to call objects destructors. So "unclosed file" resource + warnings are now corretly emitted for daemon threads. + - Issue #19514: Deduplicate some _Py_IDENTIFIER declarations. Patch by Andrei Dorian Duma. |