]> granicus.if.org Git - python/commitdiff
In list of sequence comparison examples, "=" should be "==". Reported
authorFred Drake <fdrake@acm.org>
Fri, 16 Apr 1999 13:17:04 +0000 (13:17 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 16 Apr 1999 13:17:04 +0000 (13:17 +0000)
by Mirko Liss <n89553@hrz.uni-paderborn.de>.

Doc/tut/tut.tex

index 13272b999c80b80bc3b72550cbd2e280d764a058..35d8bb5b55ad47ff712bcf7c21a98d286ee31bc7 100644 (file)
@@ -1720,7 +1720,7 @@ examples of comparisons between sequences with the same types:
 'ABC' < 'C' < 'Pascal' < 'Python'
 (1, 2, 3, 4)           < (1, 2, 4)
 (1, 2)                 < (1, 2, -1)
-(1, 2, 3)              = (1.0, 2.0, 3.0)
+(1, 2, 3)             == (1.0, 2.0, 3.0)
 (1, 2, ('aa', 'ab'))   < (1, 2, ('abc', 'a'), 4)
 \end{verbatim}