mirror of
https://github.com/python/cpython.git
synced 2025-11-26 13:22:51 +00:00
Fix representation of ^= operator in __ixor__() documentation.
Closes SF bug #776181. Should be backported.
This commit is contained in:
parent
18452a4bf2
commit
a3788642a3
1 changed files with 1 additions and 1 deletions
|
|
@ -1836,7 +1836,7 @@ complicated).
|
|||
These methods are called to implement the augmented arithmetic
|
||||
operations (\code{+=}, \code{-=}, \code{*=}, \code{/=}, \code{\%=},
|
||||
\code{**=}, \code{<}\code{<=}, \code{>}\code{>=}, \code{\&=},
|
||||
\code{\^=}, \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
|
||||
could be, but does not have to be, \var{self}). If a specific method
|
||||
is not defined, the augmented operation falls back to the normal
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue