explain an XXX in more detail

This commit is contained in:
Fred Drake 2006-06-14 05:15:51 +00:00
parent a16393efb7
commit 6ce9fe880b
1 changed files with 3 additions and 0 deletions

View File

@ -246,6 +246,9 @@ class SGMLParser(markupbase.ParserBase):
self.__starttag_text = rawdata[start_pos:match.end(1) + 1]
return k
# XXX The following should skip matching quotes (' or ")
# As a shortcut way to exit, this isn't so bad, but shouldn't
# be used to locate the actual end of the start tag since the
# < or > characters may be embedded in an attribute value.
match = endbracket.search(rawdata, i+1)
if not match:
return -1