diff options
author | Fred Drake <fdrake@acm.org> | 2000-12-11 22:39:24 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-12-11 22:39:24 (GMT) |
commit | 2a22200ab4e5799b5e0975a26a21bc406e89d850 (patch) | |
tree | c6045cde8997c335d21ebb9058bec74284620887 /Doc | |
parent | 6bcf4c2a0b51ecb9002bcc96d71c354c6afe7990 (diff) | |
download | cpython-2a22200ab4e5799b5e0975a26a21bc406e89d850.zip cpython-2a22200ab4e5799b5e0975a26a21bc406e89d850.tar.gz cpython-2a22200ab4e5799b5e0975a26a21bc406e89d850.tar.bz2 |
Adjust explanation of operator precedence summary -- exponentiation groups
from right to left!
Closes bug #125391.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ref/ref5.tex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex index a7e6351..d4fa3af 100644 --- a/Doc/ref/ref5.tex +++ b/Doc/ref/ref5.tex @@ -899,7 +899,8 @@ 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). +right --- see above, and exponentiation, which groups from right to +left). \begin{tableii}{c|l}{textrm}{Operator}{Description} \lineii{\keyword{lambda}} {Lambda expression} |