diff options
author | Walter Dörwald <walter@livinglogic.de> | 2003-04-16 09:46:13 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2003-04-16 09:46:13 (GMT) |
commit | 5688b7ac3edc756ab8d619b6f0993d54010ab20e (patch) | |
tree | aaf3b28fb2eb8de55640438ffeda9e86bed807fe /Misc | |
parent | 19a02ba69dd908bcc5fe45263fb9c956ed9f7ffc (diff) | |
download | cpython-5688b7ac3edc756ab8d619b6f0993d54010ab20e.zip cpython-5688b7ac3edc756ab8d619b6f0993d54010ab20e.tar.gz cpython-5688b7ac3edc756ab8d619b6f0993d54010ab20e.tar.bz2 |
Add two dictionaries to htmlentitydefs: name2codepoint maps
HTML entity names to Unicode codepoints (as integers).
codepoint2name is the reverse mapping. From SF patch #722017.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |