[Python-checkins] python/dist/src/Misc NEWS,1.724,1.725

doerwalter@users.sourceforge.net doerwalter@users.sourceforge.net
Wed, 16 Apr 2003 02:46:15 -0700


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1:/tmp/cvs-serv29582/Misc

Modified Files:
	NEWS 
Log Message:
Add two dictionaries to htmlentitydefs: name2codepoint maps
HTML entity names to Unicode codepoints (as integers).
codepoint2name is the reverse mapping. From SF patch #722017.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.724
retrieving revision 1.725
diff -C2 -d -r1.724 -r1.725
*** NEWS	15 Apr 2003 15:10:42 -0000	1.724
--- NEWS	16 Apr 2003 09:46:11 -0000	1.725
***************
*** 104,107 ****
--- 104,111 ----
  -------
  
+ - 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.