This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author cpalmer
Recipients cpalmer, fantoozler, fdrake, georg.brandl
Date 2008-12-02.02:05:59
SpamBayes Score 5.5269895e-05
Marked as misclassified No
Message-id <1228183564.17.0.443912207978.issue670664@psf.upfronthosting.co.za>
In-reply-to
Content
Here is an additional test case. I have a super simple HTML "minifier"
that burps when given this test file:

========
$ cat test.html 
'foo <sc'+'ript>'
========

The explosion is:

========
$ ./minify.py test.html 
Warning: malformed start tag
'foo Traceback (most recent call last):
  File "./minify.py", line 84, in <module>
    m.feed(f.read())
  File "/usr/local/lib/python2.5/HTMLParser.py", line 108, in feed
    self.goahead(0)
  File "/usr/local/lib/python2.5/HTMLParser.py", line 148, in goahead
    k = self.parse_starttag(i)
  File "/usr/local/lib/python2.5/HTMLParser.py", line 226, in parse_starttag
    endpos = self.check_for_whole_start_tag(i)
  File "/usr/local/lib/python2.5/HTMLParser.py", line 302, in
check_for_whole_start_tag
    raise AssertionError("we should not get here!")
AssertionError: we should not get here!
========
History
Date User Action Args
2008-12-02 02:06:04cpalmersetrecipients: + cpalmer, fdrake, georg.brandl, fantoozler
2008-12-02 02:06:04cpalmersetmessageid: <1228183564.17.0.443912207978.issue670664@psf.upfronthosting.co.za>
2008-12-02 02:06:02cpalmerlinkissue670664 messages
2008-12-02 02:06:02cpalmercreate