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.

classification
Title: XHTML entity apos missing in htmlentitydefs
Type: enhancement Stage: resolved
Components: Library (Lib) Versions: Python 3.3
process
Status: closed Resolution: duplicate
Dependencies: Superseder: html.entities mapping dicts need updating?
View: 11113
Assigned To: Nosy List: eric.araujo, ezio.melotti, hp.dekoning
Priority: normal Keywords: easy

Created on 2011-06-13 22:04 by hp.dekoning, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg138282 - (view) Author: Hans Peter de Koning (hp.dekoning) Date: 2011-06-13 22:04
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
msg138317 - (view) Author: Éric Araujo (eric.araujo) * (Python committer) Date: 2011-06-14 14:55
Please join the discussion on the already-opened report #11113.
History
Date User Action Args
2022-04-11 14:57:18adminsetgithub: 56538
2011-06-14 14:55:36eric.araujosetstatus: open -> closed

type: enhancement
versions: + Python 3.3, - Python 2.7
messages: + msg138317
superseder: html.entities mapping dicts need updating?
resolution: duplicate
stage: resolved
2011-06-13 22:20:06ezio.melottisetkeywords: + easy
nosy: + ezio.melotti, eric.araujo
components: + Library (Lib), - Extension Modules
2011-06-13 22:04:10hp.dekoningcreate