summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2013-11-12 15:37:55 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2013-11-12 15:37:55 (GMT)
commit45956b9a33af634a2919ade64c1dd223ab2d5235 (patch)
tree6ce6544601bc17c71eb6cacec9f3e0610847affa /Misc
parentc6a140f330178ea8df83fae003ebbccc50b24a2c (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8d8d585..16c0475 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.