Add two dictionaries to htmlentitydefs: name2codepoint maps

HTML entity names to Unicode codepoints (as integers).
codepoint2name is the reverse mapping. From SF patch #722017.
This commit is contained in:
Walter Dörwald 2003-04-16 09:46:13 +00:00
parent 19a02ba69d
commit 5688b7ac3e
3 changed files with 289 additions and 257 deletions

View file

@ -103,6 +103,10 @@ Extension modules
Library
-------
- htmlentitydefs has two new dictionaries: name2codepoint maps
HTML entity names to Unicode codepoints (as integers).
codepoint2name is the reverse mapping. See SF patch #722017.
- pdb has a new command, "debug", which lets you step through
arbitrary code from the debugger's (pdb) prompt.