]> granicus.if.org Git - python/commitdiff
Fix representation of ^= operator in __ixor__() documentation.
authorFred Drake <fdrake@acm.org>
Wed, 23 Jul 2003 15:18:03 +0000 (15:18 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 23 Jul 2003 15:18:03 +0000 (15:18 +0000)
Closes SF bug #776181.  Should be backported.

Doc/ref/ref3.tex

index 98618f1414b8bc39388c77a8e9ef4ef259e926ea..36c8c3871a4d5cf66a7b4f9fb79772ff1bbd52fb 100644 (file)
@@ -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