diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2011-09-05 14:11:06 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2011-09-05 14:11:06 (GMT) |
commit | d9e0b068af175a2fc1c2fe979ab97b5d4f8239b7 (patch) | |
tree | c1d0984585611c4b99dbbdd02afb02a23736b5e8 /Lib/html | |
parent | 73abc243458e7d2e35e93d8df625b391cd4f7f62 (diff) | |
download | cpython-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 'Lib/html')
-rw-r--r-- | Lib/html/parser.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/html/parser.py b/Lib/html/parser.py index 9412280..a6d5be9 100644 --- a/Lib/html/parser.py +++ b/Lib/html/parser.py @@ -458,4 +458,4 @@ class HTMLParser(_markupbase.ParserBase): return '&'+s+';' return re.sub(r"&(#?[xX]?(?:[0-9a-fA-F]+|\w{1,8}));", - replaceEntities, s, re.ASCII) + replaceEntities, s, flags=re.ASCII) |