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/test/test_htmlparser.py | |
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/test/test_htmlparser.py')
-rw-r--r-- | Lib/test/test_htmlparser.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_htmlparser.py b/Lib/test/test_htmlparser.py index 1da2ce4..e2b09a9 100644 --- a/Lib/test/test_htmlparser.py +++ b/Lib/test/test_htmlparser.py @@ -393,7 +393,6 @@ class HTMLParserTolerantTestCase(HTMLParserStrictTestCase): self._run_check("<!DOCTYPE foo $ >", [('decl', 'DOCTYPE foo $ ')]) def test_illegal_declarations(self): - # XXX this might be wrong self._run_check('<!spacer type="block" height="25">', [('comment', 'spacer type="block" height="25"')]) |