[Python-checkins] python/dist/src/Doc/whatsnew whatsnew23.tex,1.108,1.109

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Fri, 17 Jan 2003 08:20:30 -0800


Update of /cvsroot/python/python/dist/src/Doc/whatsnew
In directory sc8-pr-cvs1:/tmp/cvs-serv19627

Modified Files:
	whatsnew23.tex 
Log Message:
Correct typos in example code.


Index: whatsnew23.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/whatsnew/whatsnew23.tex,v
retrieving revision 1.108
retrieving revision 1.109
diff -C2 -d -r1.108 -r1.109
*** whatsnew23.tex	13 Jan 2003 19:09:03 -0000	1.108
--- whatsnew23.tex	17 Jan 2003 16:20:23 -0000	1.109
***************
*** 895,899 ****
  Traceback (most recent call last):
    File "<stdin>", line 1, in ?
! ValueError: attempt to assign list of size 3 to extended slice of size 2
  \end{verbatim}
  
--- 895,899 ----
  Traceback (most recent call last):
    File "<stdin>", line 1, in ?
! ValueError: attempt to assign sequence of size 3 to extended slice of size 2
  \end{verbatim}
  
***************
*** 1001,1005 ****
  Traceback (most recent call last):
    File "stdin", line 1, in ?
! KeyError: pop(): dictionary is empty
  >>> d
  {}
--- 1001,1005 ----
  Traceback (most recent call last):
    File "stdin", line 1, in ?
! KeyError: 'pop(): dictionary is empty'
  >>> d
  {}
***************
*** 1683,1687 ****
  >>> now.ctime()  # Only available on date, datetime
  'Mon Dec 30 21:27:03 2002'
! >>> now.strftime('%Y %d %h')
  '2002 30 Dec'
  \end{verbatim}
--- 1683,1687 ----
  >>> now.ctime()  # Only available on date, datetime
  'Mon Dec 30 21:27:03 2002'
! >>> now.strftime('%Y %d %b')
  '2002 30 Dec'
  \end{verbatim}