From 511281ac00691f4b68d1606c65b9e732391feebc Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Fri, 16 Apr 1999 13:17:04 +0000 Subject: In list of sequence comparison examples, "=" should be "==". Reported by Mirko Liss . --- Doc/tut/tut.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 13272b9..35d8bb5 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -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} -- cgit v0.12