mirror of
https://github.com/python/cpython.git
synced 2025-09-28 11:15:17 +00:00
Bug #1637967: missing //= operator in list.
This commit is contained in:
parent
3ffcfe2f68
commit
45dc1f2fd3
1 changed files with 2 additions and 2 deletions
|
@ -1999,8 +1999,8 @@ complicated).
|
||||||
\methodline[numeric object]{__ixor__}{self, other}
|
\methodline[numeric object]{__ixor__}{self, other}
|
||||||
\methodline[numeric object]{__ior__}{self, other}
|
\methodline[numeric object]{__ior__}{self, other}
|
||||||
These methods are called to implement the augmented arithmetic
|
These methods are called to implement the augmented arithmetic
|
||||||
operations (\code{+=}, \code{-=}, \code{*=}, \code{/=}, \code{\%=},
|
operations (\code{+=}, \code{-=}, \code{*=}, \code{/=}, \code{//=},
|
||||||
\code{**=}, \code{<<=}, \code{>>=}, \code{\&=},
|
\code{\%=}, \code{**=}, \code{<<=}, \code{>>=}, \code{\&=},
|
||||||
\code{\textasciicircum=}, \code{|=}). These methods should attempt to do the
|
\code{\textasciicircum=}, \code{|=}). These methods should attempt to do the
|
||||||
operation in-place (modifying \var{self}) and return the result (which
|
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
|
could be, but does not have to be, \var{self}). If a specific method
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue