[Python-checkins] python/dist/src/Misc NEWS,1.1332,1.1333

nascheme@users.sourceforge.net nascheme at users.sourceforge.net
Fri Aug 12 19:35:07 CEST 2005


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19776/Misc

Modified Files:
	NEWS 
Log Message:
Change the %s format specifier for str objects so that it returns a
unicode instance if the argument is not an instance of basestring and
calling __str__ on the argument returns a unicode instance.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1332
retrieving revision 1.1333
diff -u -d -r1.1332 -r1.1333
--- NEWS	9 Aug 2005 15:00:51 -0000	1.1332
+++ NEWS	12 Aug 2005 17:34:57 -0000	1.1333
@@ -118,6 +118,10 @@
   positions.  It once again reports a syntax error if a future
   statement occurs after anything other than a doc string.
 
+- Change the %s format specifier for str objects so that it returns a
+  unicode instance if the argument is not an instance of basestring and
+  calling __str__ on the argument returns a unicode instance.
+
 Extension Modules
 -----------------
 



More information about the Python-checkins mailing list