[Python-checkins] python/dist/src/Doc/tut tut.tex,1.199,1.200
fdrake at users.sourceforge.net
fdrake at users.sourceforge.net
Sat Aug 16 00:30:49 EDT 2003
Update of /cvsroot/python/python/dist/src/Doc/tut
In directory sc8-pr-cvs1:/tmp/cvs-serv13371/tut
Modified Files:
tut.tex
Log Message:
Adjust some horizontal indentation to be consistent with the style used
throughout the documentation.
Index: tut.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tut/tut.tex,v
retrieving revision 1.199
retrieving revision 1.200
diff -C2 -d -r1.199 -r1.200
*** tut.tex 14 Aug 2003 22:57:46 -0000 1.199
--- tut.tex 16 Aug 2003 06:30:47 -0000 1.200
***************
*** 1235,1243 ****
... for x in range(2, n):
... if n % x == 0:
! ... print n, 'equals', x, '*', n/x
! ... break
... else:
! ... # loop fell through without finding a factor
! ... print n, 'is a prime number'
...
2 is a prime number
--- 1235,1243 ----
... for x in range(2, n):
... if n % x == 0:
! ... print n, 'equals', x, '*', n/x
! ... break
... else:
! ... # loop fell through without finding a factor
! ... print n, 'is a prime number'
...
2 is a prime number
More information about the Python-checkins
mailing list