[Python-checkins] r87545 - in python/branches/release31-maint: Lib/html/parser.py Lib/test/test_htmlparser.py

senthil.kumaran python-checkins at python.org
Tue Dec 28 17:10:56 CET 2010


Author: senthil.kumaran
Date: Tue Dec 28 17:10:56 2010
New Revision: 87545

Log:
Merged revisions 87542 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/branches/py3k

........
  r87542 | senthil.kumaran | 2010-12-28 23:55:16 +0800 (Tue, 28 Dec 2010) | 3 lines
  
  Fix Issue10759 - html.parser.unescape() fails on HTML entities with incorrect syntax
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Lib/html/parser.py
   python/branches/release31-maint/Lib/test/test_htmlparser.py

Modified: python/branches/release31-maint/Lib/html/parser.py
==============================================================================
--- python/branches/release31-maint/Lib/html/parser.py	(original)
+++ python/branches/release31-maint/Lib/html/parser.py	Tue Dec 28 17:10:56 2010
@@ -367,13 +367,16 @@
             return s
         def replaceEntities(s):
             s = s.groups()[0]
-            if s[0] == "#":
-                s = s[1:]
-                if s[0] in ['x','X']:
-                    c = int(s[1:], 16)
-                else:
-                    c = int(s)
-                return chr(c)
+            try:
+                if s[0] == "#":
+                    s = s[1:]
+                    if s[0] in ['x','X']:
+                        c = int(s[1:], 16)
+                    else:
+                        c = int(s)
+                    return chr(c)
+            except ValueError:
+                return '&#'+ s +';'
             else:
                 # Cannot use name2codepoint directly, because HTMLParser
                 # supports apos, which is not part of HTML 4

Modified: python/branches/release31-maint/Lib/test/test_htmlparser.py
==============================================================================
--- python/branches/release31-maint/Lib/test/test_htmlparser.py	(original)
+++ python/branches/release31-maint/Lib/test/test_htmlparser.py	Tue Dec 28 17:10:56 2010
@@ -319,6 +319,10 @@
         self._run_check("<html foo='&euro;&amp;&#97;&#x61;&unsupported;'>", [
                 ("starttag", "html", [("foo", "\u20AC&aa&unsupported;")])
                 ])
+    def test_unescape_function(self):
+        p = html.parser.HTMLParser()
+        self.assertEqual(p.unescape('&#bad;'),'&#bad;')
+        self.assertEqual(p.unescape('&#0038;'),'&')
 
 
 def test_main():


More information about the Python-checkins mailing list