[Python-checkins] CVS: python/dist/src/Misc NEWS,1.346,1.347

M.-A. Lemburg lemburg@users.sourceforge.net
Wed, 09 Jan 2002 08:21:29 -0800


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

Modified Files:
	NEWS 
Log Message:
Fixed "u#" parser marker to pass through Unicode objects as-is without
going through the buffer interface API.

Added tests for this to the _testcapi module and updated docs.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.346
retrieving revision 1.347
diff -C2 -d -r1.346 -r1.347
*** NEWS	2002/01/01 21:14:12	1.346
--- NEWS	2002/01/09 16:21:27	1.347
***************
*** 29,32 ****
--- 29,35 ----
  C API
  
+ - The "u#" parser marker will now pass through Unicode object as-is
+   without going through the buffer API.
+ 
  - The enumerators of cmp_op have been renamed to use the prefix PyCmp_.