summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2015-09-06 18:44:45 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2015-09-06 18:44:45 (GMT)
commit20a2c6482e28a2ca8d257ba646f2b8ead4837387 (patch)
tree92fc8ee593df66a6df5839130f1ab5be161aec46 /Misc
parent2ba39800e53140a3df6aed92ccbd1f99b9f83290 (diff)
parent6f2bb98966853edcf1855b9dd310529d071241a2 (diff)
downloadcpython-20a2c6482e28a2ca8d257ba646f2b8ead4837387.zip
cpython-20a2c6482e28a2ca8d257ba646f2b8ead4837387.tar.gz
cpython-20a2c6482e28a2ca8d257ba646f2b8ead4837387.tar.bz2
#23144: merge with 3.4.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 5 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5f23605..64c9af7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1,4 +1,4 @@
-+++++++++++
++++++++++++
Python News
+++++++++++
@@ -95,9 +95,13 @@ Core and Builtins
Library
-------
+- Issue #23144: Make sure that HTMLParser.feed() returns all the data, even
+ when convert_charrefs is True.
+
- Issue #24635: Fixed a bug in typing.py where isinstance([], typing.Iterable)
would return True once, then False on subsequent calls.
+
- Issue #24989: Fixed buffer overread in BytesIO.readline() if a position is
set beyond size. Based on patch by John Leitch.