#13987: HTMLParser is now able to handle malformed start tags.

This commit is contained in:
Ezio Melotti 2012-02-15 13:19:10 +02:00
parent d2307cb48a
commit 65d36dab4d
3 changed files with 9 additions and 6 deletions

View File

@ -315,8 +315,8 @@ class HTMLParser(markupbase.ParserBase):
- self.__starttag_text.rfind("\n")
else:
offset = offset + len(self.__starttag_text)
self.error("junk characters in start tag: %r"
% (rawdata[k:endpos][:20],))
self.handle_data(rawdata[i:endpos])
return endpos
if end.endswith('/>'):
# XHTML-style empty tag: <span attr="value" />
self.handle_startendtag(tag, attrs)
@ -353,8 +353,10 @@ class HTMLParser(markupbase.ParserBase):
# end of input in or before attribute value, or we have the
# '/' from a '/>' ending
return -1
self.updatepos(i, j)
self.error("malformed start tag")
if j > i:
return j
else:
return i + 1
raise AssertionError("we should not get here!")
# Internal -- parse endtag, return end or -1 if incomplete

View File

@ -206,7 +206,8 @@ text
self._run_check("</$>", [('comment', '$')])
self._run_check("</", [('data', '</')])
self._run_check("</a", [('data', '</a')])
self._parse_error("<a<a>")
# XXX this might be wrong
self._run_check("<a<a>", [('data', '<a'), ('starttag', 'a', [])])
self._run_check("</a<a>", [('endtag', 'a<a')])
self._run_check("<!", [('data', '<!')])
self._run_check("<a", [('data', '<a')])

View File

@ -94,7 +94,7 @@ Library
-------
- Issue #13987: HTMLParser is now able to handle EOFs in the middle of a
construct.
construct and malformed start tags.
- Issue #13015: Fix a possible reference leak in defaultdict.__repr__.
Patch by Suman Saha.