diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2012-02-13 18:20:00 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2012-02-13 18:20:00 (GMT) |
commit | e31ddedb0e5d0151cd4d7821365690ba9d22386d (patch) | |
tree | db74da80a177aff004f17943855f165ba268a93f /Lib/html | |
parent | 7f728c1e1af1cf9bc3cadcceb4435051a0689d76 (diff) | |
download | cpython-e31ddedb0e5d0151cd4d7821365690ba9d22386d.zip cpython-e31ddedb0e5d0151cd4d7821365690ba9d22386d.tar.gz cpython-e31ddedb0e5d0151cd4d7821365690ba9d22386d.tar.bz2 |
Fix an index and clean up comments.
Diffstat (limited to 'Lib/html')
-rw-r--r-- | Lib/html/parser.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/html/parser.py b/Lib/html/parser.py index 9db8ab5..aa31fbc 100644 --- a/Lib/html/parser.py +++ b/Lib/html/parser.py @@ -270,12 +270,13 @@ class HTMLParser(_markupbase.ParserBase): if rawdata[i:i+2] != '<!': self.error('unexpected call to parse_html_declaration()') if rawdata[i:i+4] == '<!--': + # this case is actually already handled in goahead() return self.parse_comment(i) elif rawdata[i:i+3] == '<![': return self.parse_marked_section(i) elif rawdata[i:i+9].lower() == '<!doctype': # find the closing > - gtpos = rawdata.find('>', 9) + gtpos = rawdata.find('>', i+9) if gtpos == -1: return -1 self.handle_decl(rawdata[i+2:gtpos]) |