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 fantoozler
Recipients
Date 2003-01-19.14:07:07
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
http://www.ebay.com contains a script element of the form

<SCRIPT>
...
   vbscript += "</SCR"+"IPT> \n";
...
</SCRIPT>

which is not enclosed in "<!-- ... -->" comments.  The parser 
choked on that line, indicating it was a mal-formed end tag.

The changes are:

  interesting_cdata is now a dict mapping start tag to
    an re matching the end tag, a "<--" or \Z

  HTMLParser.set_cdata_mode takes an extra argument, 
    the start tag
History
Date User Action Args
2007-08-23 15:19:55adminlinkissue670664 messages
2007-08-23 15:19:55admincreate