From: Fred Drake Date: Thu, 24 Jul 2003 01:46:39 +0000 (+0000) Subject: Fix broken markup; make the ^= representation work properly X-Git-Tag: 2.2~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd2cc27e6779ada42e30c1ecd25c437ff9757a9a;p=thirdparty%2FPython%2Fcpython.git Fix broken markup; make the ^= representation work properly Closes SF bug #776181. --- diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index feff2a985efe..161effe584d4 100644 --- a/Doc/ref/ref3.tex +++ b/Doc/ref/ref3.tex @@ -1486,7 +1486,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