]> granicus.if.org Git - python/commitdiff
Bug #1637967: missing //= operator in list.
authorGeorg Brandl <georg@python.org>
Wed, 17 Jan 2007 21:09:04 +0000 (21:09 +0000)
committerGeorg Brandl <georg@python.org>
Wed, 17 Jan 2007 21:09:04 +0000 (21:09 +0000)
Doc/ref/ref3.tex

index 618dccde8c46d20c1d28ab808bccff73b130f75e..7d36cbd34fa5da190164ed6382f57bc3061f2a76 100644 (file)
@@ -1999,8 +1999,8 @@ complicated).
 \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