summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-04-19 21:55:01 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-04-19 21:55:01 (GMT)
commit8e6e0fdb7fee3796df8b578c1311b5e46005f2d9 (patch)
treee1f800a5e8c4747cbe643209d54574ab8314b54b /Misc
parent10ac77d2d886c0921b21253b768fca8bc9b3c0dd (diff)
downloadcpython-8e6e0fdb7fee3796df8b578c1311b5e46005f2d9.zip
cpython-8e6e0fdb7fee3796df8b578c1311b5e46005f2d9.tar.gz
cpython-8e6e0fdb7fee3796df8b578c1311b5e46005f2d9.tar.bz2
Issue #14308: Fix an exception when a "dummy" thread is in the threading module's active list after a fork().
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b012d28..47d7b10 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -47,6 +47,9 @@ Core and Builtins
Library
-------
+- Issue #14308: Fix an exception when a "dummy" thread is in the threading
+ module's active list after a fork().
+
- Issue #14538: HTMLParser can now parse correctly start tags that contain
a bare '/'.