diff options
author | Georg Brandl <georg@python.org> | 2007-01-17 21:09:07 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-01-17 21:09:07 (GMT) |
commit | c3df1b1392e54e74bfc4c12d04e5b5d12558e9be (patch) | |
tree | e9deb854372dfe16c5492481d0a36e5e961d5362 /Doc | |
parent | dfad614321080b6787aa29b055fea99a339a078b (diff) | |
download | cpython-c3df1b1392e54e74bfc4c12d04e5b5d12558e9be.zip cpython-c3df1b1392e54e74bfc4c12d04e5b5d12558e9be.tar.gz cpython-c3df1b1392e54e74bfc4c12d04e5b5d12558e9be.tar.bz2 |
Bug #1637967: missing //= operator in list.
(backport from rev. 53475)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ref/ref3.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index 618dccd..7d36cbd 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 |