Commit 9fb73ba7 authored by Senthil Kumaran's avatar Senthil Kumaran

Fix Issue10759 - html.parser.unescape() fails on HTML entities with incorrect syntax

parent 8e96c6ae
...@@ -434,13 +434,16 @@ class HTMLParser(_markupbase.ParserBase): ...@@ -434,13 +434,16 @@ class HTMLParser(_markupbase.ParserBase):
return s return s
def replaceEntities(s): def replaceEntities(s):
s = s.groups()[0] s = s.groups()[0]
if s[0] == "#": try:
s = s[1:] if s[0] == "#":
if s[0] in ['x','X']: s = s[1:]
c = int(s[1:], 16) if s[0] in ['x','X']:
else: c = int(s[1:], 16)
c = int(s) else:
return chr(c) c = int(s)
return chr(c)
except ValueError:
return '&#'+ s +';'
else: else:
# Cannot use name2codepoint directly, because HTMLParser # Cannot use name2codepoint directly, because HTMLParser
# supports apos, which is not part of HTML 4 # supports apos, which is not part of HTML 4
......
...@@ -356,6 +356,11 @@ class HTMLParserTolerantTestCase(TestCaseBase): ...@@ -356,6 +356,11 @@ class HTMLParserTolerantTestCase(TestCaseBase):
[('action', 'bogus|&#()value')])], [('action', 'bogus|&#()value')])],
collector = self.collector) collector = self.collector)
def test_unescape_function(self):
p = html.parser.HTMLParser()
self.assertEqual(p.unescape('&#bad;'),'&#bad;')
self.assertEqual(p.unescape('&'),'&')
def test_main(): def test_main():
support.run_unittest(HTMLParserTestCase, HTMLParserTolerantTestCase) support.run_unittest(HTMLParserTestCase, HTMLParserTolerantTestCase)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment