diff options
author | Georg Brandl <georg@python.org> | 2007-01-17 21:09:04 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-01-17 21:09:04 (GMT) |
commit | 45dc1f2fd3eb1364897b3e618309c12b5a31764c (patch) | |
tree | 4df2506d08467cf88260f75fa6a9b08d5ffa40a5 /Doc/ref | |
parent | 3ffcfe2f68850ff3d8407420e0c9e0c38f5eeece (diff) | |
download | cpython-45dc1f2fd3eb1364897b3e618309c12b5a31764c.zip cpython-45dc1f2fd3eb1364897b3e618309c12b5a31764c.tar.gz cpython-45dc1f2fd3eb1364897b3e618309c12b5a31764c.tar.bz2 |
Bug #1637967: missing //= operator in list.
Diffstat (limited to 'Doc/ref')
-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 |