From: Fred Drake Date: Mon, 11 Dec 2000 22:39:24 +0000 (+0000) Subject: Adjust explanation of operator precedence summary -- exponentiation groups X-Git-Tag: v2.1a1~636 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a22200ab4e5799b5e0975a26a21bc406e89d850;p=python Adjust explanation of operator precedence summary -- exponentiation groups from right to left! Closes bug #125391. --- diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex index a7e635153a..d4fa3af5d7 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}