summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2015-09-06 18:38:06 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2015-09-06 18:38:06 (GMT)
commit6f2bb98966853edcf1855b9dd310529d071241a2 (patch)
tree088d7d3cdd103b5b01a6d9c081ec3b40fcd110bd /Misc/NEWS
parent527ef0792f79fda93f568830bba396b22fbcec6a (diff)
downloadcpython-6f2bb98966853edcf1855b9dd310529d071241a2.zip
cpython-6f2bb98966853edcf1855b9dd310529d071241a2.tar.gz
cpython-6f2bb98966853edcf1855b9dd310529d071241a2.tar.bz2
#23144: Make sure that HTMLParser.feed() returns all the data, even when convert_charrefs is True.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index dd175fe..7a3c22c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1,4 +1,4 @@
-+++++++++++
++++++++++++
Python News
+++++++++++
@@ -81,6 +81,9 @@ Core and Builtins
Library
-------
+- Issue #23144: Make sure that HTMLParser.feed() returns all the data, even
+ when convert_charrefs is True.
+
- Issue #16180: Exit pdb if file has syntax error, instead of trapping user
in an infinite loop. Patch by Xavier de Gaye.