Fix markup error

This commit is contained in:
Andrew M. Kuchling 2000-08-30 12:55:42 +00:00
parent d576e9df5f
commit 3cdb5761c5
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ by 2, equivalent to the slightly lengthier
The full list of supported assignment operators is \code{+=},
\code{-=}, \code{*=}, \code{/=}, \code{\%=}, \code{**=}, \code{\&=},
\code{|=}, \code{^=}, \code{>>=}, and \code{<<=}. Python classes can
\code{|=}, \verb|^=|, \code{>>=}, and \code{<<=}. Python classes can
override the augmented assignment operators by defining methods named
\method{__iadd__}, \method{__isub__}, etc. For example, the following
\class{Number} class stores a number and supports using += to create a