From: Fred Drake Date: Wed, 23 Jul 2003 15:18:03 +0000 (+0000) Subject: Fix representation of ^= operator in __ixor__() documentation. X-Git-Tag: v2.3c2~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a3788642a3dd46d8efa1a424781c2dcb643b2952;p=thirdparty%2FPython%2Fcpython.git Fix representation of ^= operator in __ixor__() documentation. Closes SF bug #776181. Should be backported. --- diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index 98618f1414b8..36c8c3871a4d 100644 --- a/Doc/ref/ref3.tex +++ b/Doc/ref/ref3.tex @@ -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