summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2011-09-05 14:11:06 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2011-09-05 14:11:06 (GMT)
commitd9e0b068af175a2fc1c2fe979ab97b5d4f8239b7 (patch)
treec1d0984585611c4b99dbbdd02afb02a23736b5e8 /Misc
parent73abc243458e7d2e35e93d8df625b391cd4f7f62 (diff)
downloadcpython-d9e0b068af175a2fc1c2fe979ab97b5d4f8239b7.zip
cpython-d9e0b068af175a2fc1c2fe979ab97b5d4f8239b7.tar.gz
cpython-d9e0b068af175a2fc1c2fe979ab97b5d4f8239b7.tar.bz2
#12888: Fix a bug in HTMLParser.unescape that prevented it to escape more than 128 entities. Patch by Peter Otten.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 7096d72..45ab6a4 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -661,6 +661,7 @@ Douglas Orr
Michele OrrĂ¹
Oleg Oshmyan
Denis S. Otkidach
+Peter Otten
Michael Otteneder
R. M. Oudkerk
Russel Owen
diff --git a/Misc/NEWS b/Misc/NEWS
index c12bda2..ff1a0ad 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,9 @@ Core and Builtins
Library
-------
+- Issue #12888: Fix a bug in HTMLParser.unescape that prevented it to escape
+ more than 128 entities. Patch by Peter Otten.
+
- Issue #12878: Expose a __dict__ attribute on io.IOBase and its subclasses.
- Issue #12636: IDLE reads the coding cookie when executing a Python script.