summaryrefslogtreecommitdiff
path: root/Lib/html
diff options
context:
space:
mode:
authorSenthil Kumaran <orsenthil@gmail.com>2010-12-28 16:10:56 +0000
committerSenthil Kumaran <orsenthil@gmail.com>2010-12-28 16:10:56 +0000
commit6c85838489d4627d0f8292c3a3aead3519d4765c (patch)
tree02739afa840ab07633c5a102c9ee88cc1acaaba1 /Lib/html
parent18f6b1987f0d024445dadbebba9f4395cea622bf (diff)
downloadcpython-git-6c85838489d4627d0f8292c3a3aead3519d4765c.tar.gz
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 ........
Diffstat (limited to 'Lib/html')
-rw-r--r--Lib/html/parser.py17
1 files changed, 10 insertions, 7 deletions
diff --git a/Lib/html/parser.py b/Lib/html/parser.py
index c2c7f6bf5d..3f68e189c4 100644
--- a/Lib/html/parser.py
+++ b/Lib/html/parser.py
@@ -367,13 +367,16 @@ class HTMLParser(_markupbase.ParserBase):
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