From: A.M. K. <aku...@us...> - 2003-12-20 21:49:41
|
Update of /cvsroot/py-howto/pyhowto In directory sc8-pr-cvs1:/tmp/cvs-serv25111 Modified Files: sorting.tex Log Message: Fix example Index: sorting.tex =================================================================== RCS file: /cvsroot/py-howto/pyhowto/sorting.tex,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** sorting.tex 26 Nov 2002 16:02:16 -0000 1.6 --- sorting.tex 20 Dec 2003 21:49:38 -0000 1.7 *************** *** 105,109 **** >>> a.reverse() >>> print a ! [1, 2, 3, 4, 5] \end{verbatim} --- 105,109 ---- >>> a.reverse() >>> print a ! [5, 4, 3, 2, 1] \end{verbatim} |