[Python-checkins] python/dist/src/Misc NEWS,1.707,1.708

doerwalter@users.sourceforge.net doerwalter@users.sourceforge.net
Mon, 31 Mar 2003 10:08:15 -0800


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

Modified Files:
	NEWS 
Log Message:
Fix PyString_Format() so that '%c' % u'a' returns u'a'
instead of raising a TypeError. (From SF patch #710127)

Add tests to verify this is fixed.

Add various tests for '%c' % int.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.707
retrieving revision 1.708
diff -C2 -d -r1.707 -r1.708
*** NEWS	31 Mar 2003 16:15:13 -0000	1.707
--- NEWS	31 Mar 2003 18:07:36 -0000	1.708
***************
*** 35,38 ****
--- 35,41 ----
    interpreter executions, would fail.
  
+ - "%c" % u"a" now returns a unicode string instead of raising a
+   TypeError. See SF patch #710127.
+ 
  Extension modules
  -----------------