summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-01-22 01:20:42 +0000
committerGregory P. Smith <greg@mad-scientist.com>2008-01-22 01:20:42 +0000
commit95cd5c0b72db09426f96c8e5716404da01048f93 (patch)
treee689b7c7d35b345d6038825cbad7fa136c4b59f9 /Misc
parent64c5677de4e979d1496d8851dcc27078caa89d40 (diff)
downloadcpython-git-95cd5c0b72db09426f96c8e5716404da01048f93.tar.gz
- Fix Issue #1703448: A joined thread could show up in the
threading.enumerate() list after the join() for a brief period until it actually exited.
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 2aabfbc9e3..3b55d743c5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -371,6 +371,10 @@ Core and builtins
- Issue #1537: Changed GeneratorExit's base class from Exception to
BaseException.
+- Fix Issue #1703448: A joined thread could show up in the
+ threading.enumerate() list after the join() for a brief period until
+ it actually exited.
+
Library
-------