diff options
author | Fred Drake <fdrake@acm.org> | 1999-04-16 13:17:04 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-04-16 13:17:04 (GMT) |
commit | 511281ac00691f4b68d1606c65b9e732391feebc (patch) | |
tree | 3bc57289de16bbd19073f95e70ae6267d6f0cc14 /Doc | |
parent | 4e5a7c70563eb123e68a29337ef00808f828f1fd (diff) | |
download | cpython-511281ac00691f4b68d1606c65b9e732391feebc.zip cpython-511281ac00691f4b68d1606c65b9e732391feebc.tar.gz cpython-511281ac00691f4b68d1606c65b9e732391feebc.tar.bz2 |
In list of sequence comparison examples, "=" should be "==". Reported
by Mirko Liss <n89553@hrz.uni-paderborn.de>.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tut/tut.tex | 2 |
1 files changed, 1 insertions, 1 deletions
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} |