[Python-checkins] CVS: python/dist/src/Doc/tut tut.tex,1.145,1.146

Fred L. Drake fdrake@users.sourceforge.net
Wed, 01 Aug 2001 10:17:16 -0700


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

Modified Files:
	tut.tex 
Log Message:

Minor re-wording in the exaplantion of sequence comparisons.
This closes SF bug #445749.


Index: tut.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/tut/tut.tex,v
retrieving revision 1.145
retrieving revision 1.146
diff -C2 -d -r1.145 -r1.146
*** tut.tex	2001/07/18 19:21:12	1.145
--- tut.tex	2001/08/01 17:17:13	1.146
***************
*** 2040,2046 ****
  items of two sequences compare equal, the sequences are considered
  equal.  If one sequence is an initial sub-sequence of the other, the
! shorter sequence is the smaller one.  Lexicographical ordering for
! strings uses the \ASCII{} ordering for individual characters.  Some
! examples of comparisons between sequences with the same types:
  
  \begin{verbatim}
--- 2040,2047 ----
  items of two sequences compare equal, the sequences are considered
  equal.  If one sequence is an initial sub-sequence of the other, the
! shorter sequence is the smaller (lesser) one.  Lexicographical
! ordering for strings uses the \ASCII{} ordering for individual
! characters.  Some examples of comparisons between sequences with the
! same types:
  
  \begin{verbatim}