summaryrefslogtreecommitdiffstats
path: root/Doc/ref/ref3.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2003-07-23 15:18:03 (GMT)
committerFred Drake <fdrake@acm.org>2003-07-23 15:18:03 (GMT)
commita3788642a3dd46d8efa1a424781c2dcb643b2952 (patch)
tree50ea85b84f45c9d91d01ce63a292e2ffb997a138 /Doc/ref/ref3.tex
parent18452a4bf25b35d57a364351eb80def0c262fa6f (diff)
downloadcpython-a3788642a3dd46d8efa1a424781c2dcb643b2952.zip
cpython-a3788642a3dd46d8efa1a424781c2dcb643b2952.tar.gz
cpython-a3788642a3dd46d8efa1a424781c2dcb643b2952.tar.bz2
Fix representation of ^= operator in __ixor__() documentation.
Closes SF bug #776181. Should be backported.
Diffstat (limited to 'Doc/ref/ref3.tex')
-rw-r--r--Doc/ref/ref3.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex
index 98618f1..36c8c38 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