[Python-checkins] CVS: python/dist/src PLAN.txt,1.1.2.13,1.1.2.14

Tim Peters tim_one@users.sourceforge.net
Fri, 06 Jul 2001 14:37:03 -0700


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

Modified Files:
      Tag: descr-branch
	PLAN.txt 
Log Message:
Repaired bogus glitch example.


Index: PLAN.txt
===================================================================
RCS file: /cvsroot/python/python/dist/src/Attic/PLAN.txt,v
retrieving revision 1.1.2.13
retrieving revision 1.1.2.14
diff -C2 -r1.1.2.13 -r1.1.2.14
*** PLAN.txt	2001/07/06 21:28:40	1.1.2.13
--- PLAN.txt	2001/07/06 21:37:01	1.1.2.14
***************
*** 245,252 ****
    Unicode changes still need to be merged):
  
!    >>> "%*d" % (5, u"abc")
     Traceback (most recent call last):
!    File "<stdin>", line 1, in ?
!    TypeError: an integer is required
     >>>
  
--- 245,252 ----
    Unicode changes still need to be merged):
  
!    >>> "%*s" % (5, u"abc")
     Traceback (most recent call last):
!      File "<stdin>", line 1, in ?
!    TypeError: * wants int
     >>>