summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-10-28 10:21:09 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-10-28 10:21:09 (GMT)
commitf50ffa94abe67c6ef5e615198af15f72e7cd2a9b (patch)
treed37cac5185ec2d8de23e854ff6dddd0bfb54cb49 /Misc
parent0b85cd06808cf9b865f91b3cf00796ab3f87914a (diff)
downloadcpython-f50ffa94abe67c6ef5e615198af15f72e7cd2a9b.zip
cpython-f50ffa94abe67c6ef5e615198af15f72e7cd2a9b.tar.gz
cpython-f50ffa94abe67c6ef5e615198af15f72e7cd2a9b.tar.bz2
#13273: fix a bug that prevented HTMLParser to properly detect some tags when strict=False.
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 cd8c9bf..6be52fb 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -61,6 +61,9 @@ Core and Builtins
Library
-------
+- Issue #13273: fix a bug that prevented HTMLParser to properly detect some
+ tags when strict=False.
+
- Issue #10332: multiprocessing: fix a race condition when a Pool is closed
before all tasks have completed.