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 Chenyun Yang, ezio.melotti, josh.r, martin.panter, xiang.zhang
Date 2015-10-02.19:42:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1443814955.71.0.661863376895.issue25258@psf.upfronthosting.co.za>
In-reply-to
Content
Note that HTMLParser tries to follow the HTML5 specs, and for this case they say [0]:
"Set the self-closing flag of the current tag token. Switch to the data state. Emit the current tag token."

So it seems that for <img />, only the <img> (and not the closing </img>) should be emitted.  HTMLParser has no way to set the self-closing flag, so calling handle_startendtag seems the most reasonable things to do, since it allows tree-builders to set the flag themselves.  That said, the default implementation of handle_startendtag should indeed just call handle_starttag, however this would be a backward-incompatible change.

[0]: http://www.w3.org/TR/html5/syntax.html#self-closing-start-tag-state
History
Date User Action Args
2015-10-02 19:42:35ezio.melottisetrecipients: + ezio.melotti, martin.panter, josh.r, xiang.zhang, Chenyun Yang
2015-10-02 19:42:35ezio.melottisetmessageid: <1443814955.71.0.661863376895.issue25258@psf.upfronthosting.co.za>
2015-10-02 19:42:35ezio.melottilinkissue25258 messages
2015-10-02 19:42:35ezio.melotticreate