diff options
author | Senthil Kumaran <orsenthil@gmail.com> | 2010-12-28 15:55:16 (GMT) |
---|---|---|
committer | Senthil Kumaran <orsenthil@gmail.com> | 2010-12-28 15:55:16 (GMT) |
commit | 164540fee1f5909364e0758bbb948ee6f7387f14 (patch) | |
tree | 1b8e4bac5472f3c350384e3c6daa293dbfae17c5 /Lib/test | |
parent | 3b4499c5c7718a2aca8558b857dfe02cc4a80cd9 (diff) | |
download | cpython-164540fee1f5909364e0758bbb948ee6f7387f14.zip cpython-164540fee1f5909364e0758bbb948ee6f7387f14.tar.gz cpython-164540fee1f5909364e0758bbb948ee6f7387f14.tar.bz2 |
Fix Issue10759 - html.parser.unescape() fails on HTML entities with incorrect syntax
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_htmlparser.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_htmlparser.py b/Lib/test/test_htmlparser.py index beaf6b6..5ecd016 100644 --- a/Lib/test/test_htmlparser.py +++ b/Lib/test/test_htmlparser.py @@ -356,6 +356,11 @@ class HTMLParserTolerantTestCase(TestCaseBase): [('action', 'bogus|&#()value')])], 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(): support.run_unittest(HTMLParserTestCase, HTMLParserTolerantTestCase) |