summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2003-04-16 09:46:13 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2003-04-16 09:46:13 (GMT)
commit5688b7ac3edc756ab8d619b6f0993d54010ab20e (patch)
treeaaf3b28fb2eb8de55640438ffeda9e86bed807fe /Misc
parent19a02ba69dd908bcc5fe45263fb9c956ed9f7ffc (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 70bc17c..4095c40 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.