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.

作者 ezio.melotti
收信人 Brian.Jones, eric.araujo, eric.smith, ezio.melotti, hp.dekoning, loewis, python-dev
日期 2012-06-24.03:11:35
SpamBayes Score -1.0
Marked as misclassified
Message-id <1340507496.32.0.519686741143.issue11113@psf.upfronthosting.co.za>
In-reply-to
内容
The problem is that the standard allows some charref to end without a ';', but not all of them.

So both "&Eacuteric" and &Eacute;ric" will be parsed as "Éric", but only "&alpha;centauri" will result in "αcentauri" -- "&alphacentauri" will be returned unchanged.

I'm now working on #15156 to use this dict in HTMLParser, and detecting the ';'-less entities is not easy.  A possible solution is to keep the names that are accepted without ',' in a separate (private) dict and expose a function like HTMLParser.unescape that implements all the necessary logic.

Regarding ChainMap, the html5 dict should be a superset of the html4 one.
历史
日期 用户 动作 参数
2012-06-24 03:11:36ezio.melotti修改recipients: + ezio.melotti, loewis, eric.smith, eric.araujo, Brian.Jones, python-dev, hp.dekoning
2012-06-24 03:11:36ezio.melotti修改messageid: <1340507496.32.0.519686741143.issue11113@psf.upfronthosting.co.za>
2012-06-24 03:11:35ezio.melotti链接issue11113 messages
2012-06-24 03:11:35ezio.melotti创建