[Python-checkins] python/dist/src/Doc/ref ref5.tex,1.72,1.73

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Thu, 05 Jun 2003 19:52:16 -0700


Update of /cvsroot/python/python/dist/src/Doc/ref
In directory sc8-pr-cvs1:/tmp/cvs-serv15854

Modified Files:
	ref5.tex 
Log Message:
SF bug #749759: comparisons yield bool not int

Minor documentation fix.



Index: ref5.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref5.tex,v
retrieving revision 1.72
retrieving revision 1.73
diff -C2 -d -r1.72 -r1.73
*** ref5.tex	10 Apr 2003 21:51:29 -0000	1.72
--- ref5.tex	6 Jun 2003 02:52:14 -0000	1.73
***************
*** 818,822 ****
  \end{productionlist}
  
! Comparisons yield integer values: \code{1} for true, \code{0} for false.
  
  Comparisons can be chained arbitrarily, e.g., \code{x < y <= z} is
--- 818,822 ----
  \end{productionlist}
  
! Comparisons yield boolean values: \code{True} or \code{False}.
  
  Comparisons can be chained arbitrarily, e.g., \code{x < y <= z} is