[issue12329] XHTML entity apos missing in htmlentitydefs

2011-06-14 Thread Éric Araujo
Éric Araujo added the comment: Please join the discussion on the already-opened report #3. -- resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> html.entities mapping dicts need updating? type: -> feature request versions: +Python 3.3 -Py

[issue12329] XHTML entity apos missing in htmlentitydefs

2011-06-13 Thread Ezio Melotti
Changes by Ezio Melotti : -- components: +Library (Lib) -Extension Modules keywords: +easy nosy: +eric.araujo, ezio.melotti ___ Python tracker ___ ___

[issue12329] XHTML entity apos missing in htmlentitydefs

2011-06-13 Thread Hans Peter de Koning
New submission from Hans Peter de Koning : In module htmlentitydefs.py the following XHTML-1 entity is missing from dict name2codepoint: 'apos': 0x0027, # apostrophe, U+0027 ISOnum Above line should be added after line 72: 'ang': 0x2220, # angle, U+2220 ISOamso -- com