summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-01-17 21:09:04 (GMT)
committerGeorg Brandl <georg@python.org>2007-01-17 21:09:04 (GMT)
commit45dc1f2fd3eb1364897b3e618309c12b5a31764c (patch)
tree4df2506d08467cf88260f75fa6a9b08d5ffa40a5
parent3ffcfe2f68850ff3d8407420e0c9e0c38f5eeece (diff)
downloadcpython-45dc1f2fd3eb1364897b3e618309c12b5a31764c.zip
cpython-45dc1f2fd3eb1364897b3e618309c12b5a31764c.tar.gz
cpython-45dc1f2fd3eb1364897b3e618309c12b5a31764c.tar.bz2
Bug #1637967: missing //= operator in list.
-rw-r--r--Doc/ref/ref3.tex4
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