mirror of
https://github.com/python/cpython.git
synced 2025-11-24 20:30:18 +00:00
Fix Issue10759 - HTMLParser.unescape() to handle malform charrefs.
This commit is contained in:
parent
06fdbedf81
commit
3f60f09eb2
2 changed files with 15 additions and 7 deletions
|
|
@ -320,6 +320,11 @@ DOCTYPE html [
|
|||
("endtag", "p"),
|
||||
])
|
||||
|
||||
def test_unescape_function(self):
|
||||
parser = HTMLParser.HTMLParser()
|
||||
self.assertEqual(parser.unescape('&#bad;'),'&#bad;')
|
||||
self.assertEqual(parser.unescape('&'),'&')
|
||||
|
||||
|
||||
def test_main():
|
||||
test_support.run_unittest(HTMLParserTestCase)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue