[Python-checkins] python/dist/src/Doc/tut tut.tex, 1.196.8.2, 1.196.8.3

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Sat Aug 16 00:31:23 EDT 2003


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

Modified Files:
      Tag: release23-maint
	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.196.8.2
retrieving revision 1.196.8.3
diff -C2 -d -r1.196.8.2 -r1.196.8.3
*** tut.tex	11 Aug 2003 23:43:04 -0000	1.196.8.2
--- tut.tex	16 Aug 2003 06:31:21 -0000	1.196.8.3
***************
*** 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