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 karlcow
Recipients karlcow
Date 2021-01-04.08:00:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1609747254.8.0.505282394857.issue42821@roundup.psfhosted.org>
In-reply-to
Content
This comes up while working on issue 41748


browser input 
data:text/html,<!doctype html><div class="bar" class="foo">text</div>

browser output
<div class="bar">text</div>

Actual HTMLParser output

see https://github.com/python/cpython/pull/24072#discussion_r551158342
('starttag', 'div', [('class', 'bar'), ('class', 'foo')])]

Expected HTMLParser output
('starttag', 'div', [('class', 'bar')])]
History
Date User Action Args
2021-01-04 08:00:54karlcowsetrecipients: + karlcow
2021-01-04 08:00:54karlcowsetmessageid: <1609747254.8.0.505282394857.issue42821@roundup.psfhosted.org>
2021-01-04 08:00:54karlcowlinkissue42821 messages
2021-01-04 08:00:53karlcowcreate