Commit c668755d authored by Fred Drake's avatar Fred Drake

Fix representation of ^= operator in __ixor__() documentation.

Closes SF bug #776181.  Should be backported.
parent 85042b72
...@@ -1836,7 +1836,7 @@ complicated). ...@@ -1836,7 +1836,7 @@ complicated).
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{>}\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 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
is not defined, the augmented operation falls back to the normal is not defined, the augmented operation falls back to the normal
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment