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 ezio.melotti
Recipients ezio.melotti, r.david.murray, turion
Date 2012-01-04.15:02:17
SpamBayes Score 0.00044844483
Marked as misclassified No
Message-id <1325689338.22.0.909986291768.issue13711@psf.upfronthosting.co.za>
In-reply-to
Content
Yep, this was fixed in #670664.
With the development version of Python (AFAIK the fix has not be released yet) and the example parser found in the doc[0] I get this:

>>> parser = MyHTMLParser()
>>> parser.feed('<script><td></td></script>')
Encountered a start tag: script
Encountered   some data: <td></td>
Encountered  an end tag: script


[0]: http://docs.python.org/dev/library/html.parser.html#example-html-parser-application
History
Date User Action Args
2012-01-04 15:02:18ezio.melottisetrecipients: + ezio.melotti, r.david.murray, turion
2012-01-04 15:02:18ezio.melottisetmessageid: <1325689338.22.0.909986291768.issue13711@psf.upfronthosting.co.za>
2012-01-04 15:02:17ezio.melottilinkissue13711 messages
2012-01-04 15:02:17ezio.melotticreate