mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
#12888: Fix a bug in HTMLParser.unescape that prevented it to escape more than 128 entities. Patch by Peter Otten.
This commit is contained in:
parent
73abc24345
commit
d9e0b068af
4 changed files with 7 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue