[Python-checkins] CVS: python/dist/src/Doc/ref ref5.tex,1.39,1.40

Fred L. Drake python-dev@python.org
Mon, 11 Dec 2000 14:39:28 -0800


Update of /cvsroot/python/python/dist/src/Doc/ref
In directory slayer.i.sourceforge.net:/tmp/cvs-serv28715/ref

Modified Files:
	ref5.tex 
Log Message:

Adjust explanation of operator precedence summary -- exponentiation groups
from right to left!

Closes bug #125391.


Index: ref5.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref5.tex,v
retrieving revision 1.39
retrieving revision 1.40
diff -C2 -r1.39 -r1.40
*** ref5.tex	2000/12/07 04:54:02	1.39
--- ref5.tex	2000/12/11 22:39:24	1.40
***************
*** 900,904 ****
  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).
  
  \begin{tableii}{c|l}{textrm}{Operator}{Description}
--- 900,905 ----
  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).
  
  \begin{tableii}{c|l}{textrm}{Operator}{Description}