From: Georg Brandl Date: Wed, 17 Jan 2007 21:09:04 +0000 (+0000) Subject: Bug #1637967: missing //= operator in list. X-Git-Tag: v2.6a1~2260 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=45dc1f2fd3eb1364897b3e618309c12b5a31764c;p=python Bug #1637967: missing //= operator in list. --- diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index 618dccde8c..7d36cbd34f 100644 --- a/Doc/ref/ref3.tex +++ b/Doc/ref/ref3.tex @@ -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