[Python-checkins] r53475 - python/trunk/Doc/ref/ref3.tex

georg.brandl python-checkins at python.org
Wed Jan 17 22:09:05 CET 2007


Author: georg.brandl
Date: Wed Jan 17 22:09:04 2007
New Revision: 53475

Modified:
   python/trunk/Doc/ref/ref3.tex
Log:
Bug #1637967: missing //= operator in list.


Modified: python/trunk/Doc/ref/ref3.tex
==============================================================================
--- python/trunk/Doc/ref/ref3.tex	(original)
+++ python/trunk/Doc/ref/ref3.tex	Wed Jan 17 22:09:04 2007
@@ -1999,8 +1999,8 @@
 \methodline[numeric object]{__ixor__}{self, other}
 \methodline[numeric object]{__ior__}{self, other}
 These methods are called to implement the augmented arithmetic
-operations (\code{+=}, \code{-=}, \code{*=}, \code{/=}, \code{\%=},
-\code{**=}, \code{<<=}, \code{>>=}, \code{\&=},
+operations (\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


More information about the Python-checkins mailing list