[Python-checkins] python/dist/src/Misc NEWS,1.460,1.461
lemburg@users.sourceforge.net
lemburg@users.sourceforge.net
2002年8月11日 05:23:06 -0700
Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv573/Misc
Modified Files:
NEWS
Log Message:
Add C API PyUnicode_FromOrdinal() which exposes unichr() at C level.
u'%c' will now raise a ValueError in case the argument is an
integer outside the valid range of Unicode code point ordinals.
Closes SF bug #593581.
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.460
retrieving revision 1.461
diff -C2 -d -r1.460 -r1.461
*** NEWS 10 Aug 2002 06:26:31 -0000 1.460
--- NEWS 11 Aug 2002 12:23:03 -0000 1.461
***************
*** 7,10 ****
--- 7,13 ----
Core and builtins
+ - u'%c' will now raise a ValueError in case the argument is an
+ integer outside the valid range of Unicode code point ordinals.
+
- The tempfile module has been overhauled for enhanced security. The
mktemp() function is now deprecated; new, safe replacements are
***************
*** 437,440 ****
--- 440,446 ----
C API
+
+ - New C API PyUnicode_FromOrdinal() which exposes unichr() at C
+ level.
- New functions PyErr_SetExcFromWindowsErr() and