summaryrefslogtreecommitdiffstats
path: root/Doc/ref/ref5.tex
diff options
context:
space:
mode:
authorAlex Martelli <aleaxit@gmail.com>2003-11-09 16:33:56 (GMT)
committerAlex Martelli <aleaxit@gmail.com>2003-11-09 16:33:56 (GMT)
commitc516b0e47cde4239db8e0cf91899d0f3c9b39665 (patch)
tree6bd27564999d4a5a4930db02e944d3979cff21d4 /Doc/ref/ref5.tex
parent37dc334276f4ab9f2fcab234fd3afbeb56576824 (diff)
downloadcpython-c516b0e47cde4239db8e0cf91899d0f3c9b39665.zip
cpython-c516b0e47cde4239db8e0cf91899d0f3c9b39665.tar.gz
cpython-c516b0e47cde4239db8e0cf91899d0f3c9b39665.tar.bz2
clarified (in the 5.14 summary) that tests and comparisons all chain,
added a specific \ref to 5.9 in lieu of previous vague "see above". (same as commit of Sun Nov 2 to the release23-maint branch)
Diffstat (limited to 'Doc/ref/ref5.tex')
-rw-r--r--Doc/ref/ref5.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex
index 61aec7d..8d2c27e 100644
--- a/Doc/ref/ref5.tex
+++ b/Doc/ref/ref5.tex
@@ -1068,9 +1068,9 @@ precedences\indexii{operator}{precedence} in Python, from lowest
precedence (least binding) to highest precedence (most binding).
Operators in the same box have the same precedence. Unless the syntax
is explicitly given, operators are binary. Operators in the same box
-group left to right (except for comparisons, which chain from left to
-right --- see above, and exponentiation, which groups from right to
-left).
+group left to right (except for comparisons, including tests, which all
+have the same precedence and chain from left to right --- see section
+\ref{comparisons} -- and exponentiation, which groups from right to left).
\begin{tableii}{c|l}{textrm}{Operator}{Description}
\lineii{\keyword{lambda}} {Lambda expression}