[Python-checkins] python/dist/src/Doc/ref ref3.tex,1.113,1.114

fdrake@users.sourceforge.net fdrake@users.sourceforge.net
Wed, 23 Jul 2003 08:18:05 -0700


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

Modified Files:
	ref3.tex 
Log Message:
Fix representation of ^= operator in __ixor__() documentation.
Closes SF bug #776181.  Should be backported.


Index: ref3.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref3.tex,v
retrieving revision 1.113
retrieving revision 1.114
diff -C2 -d -r1.113 -r1.114
*** ref3.tex	17 Jul 2003 14:47:12 -0000	1.113
--- ref3.tex	23 Jul 2003 15:18:03 -0000	1.114
***************
*** 1837,1841 ****
  operations (\code{+=}, \code{-=}, \code{*=}, \code{/=}, \code{\%=},
  \code{**=}, \code{<}\code{<=}, \code{>}\code{>=}, \code{\&=},
! \code{\^=}, \code{|=}).  These methods should attempt to do the
  operation in-place (modifying \var{self}) and return the result (which
  could be, but does not have to be, \var{self}).  If a specific method
--- 1837,1841 ----
  operations (\code{+=}, \code{-=}, \code{*=}, \code{/=}, \code{\%=},
  \code{**=}, \code{<}\code{<=}, \code{>}\code{>=}, \code{\&=},
! \code{\textasciicircum=}, \code{|=}).  These methods should attempt to do the
  operation in-place (modifying \var{self}) and return the result (which
  could be, but does not have to be, \var{self}).  If a specific method