diff options
author | Guido van Rossum <guido@python.org> | 1998-05-16 02:11:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-05-16 02:11:10 (GMT) |
commit | c85be6a0ff872f2fe90bc60c9fc3683e673ac060 (patch) | |
tree | 24c662e4efea11533369c02fe49d9a2448af41d0 /Doc/ref | |
parent | b9d9d72ae0925303414a1f22135f8191d6270533 (diff) | |
download | cpython-c85be6a0ff872f2fe90bc60c9fc3683e673ac060.zip cpython-c85be6a0ff872f2fe90bc60c9fc3683e673ac060.tar.gz cpython-c85be6a0ff872f2fe90bc60c9fc3683e673ac060.tar.bz2 |
Fix another oldie (item (b) only):
Date: Fri, 20 Dec 1996 14:47:50 +0100
From: Lele Gaifax <lele@nautilus.eclipse.it>
To: Python List <python-list@cwi.nl>
Subject: Typos in ref manual
Hi all,
browsing the reference manual I noticed what seem two small errors:
a) in the list of keywords (section 2.3.1) 'exec' is missing
b) in the Operator Precedence table (5.12) the comparison operators
include '=', but probably '==' was intended.
Hope this help,
lele.
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref5.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex index f296560..6ef2545 100644 --- a/Doc/ref/ref5.tex +++ b/Doc/ref/ref5.tex @@ -731,7 +731,7 @@ chain from left to right --- see above). \hline \keyword{in}, \keyword{not} \keyword{in} & Membership tests \\ \keyword{is}, \keyword{is not} & Identity tests \\ -\code{<}, \code{<=}, \code{>}, \code{>=}, \code{<>}, \code{!=}, \code{=} & +\code{<}, \code{<=}, \code{>}, \code{>=}, \code{<>}, \code{!=}, \code{==} & Comparisons \\ \hline \code{|} & Bitwise OR \\ |