@@ -218,8 +218,8 @@ \subsection{Numeric Types \label{typesnumeric}}
218218\bifuncindex {float}
219219\bifuncindex {complex}
220220
221- All numeric types support the following operations, sorted by
222- ascending priority (operations in the same box have the same
221+ All numeric types (except complex) support the following operations,
222+ sorted by ascending priority (operations in the same box have the same
223223priority; all numeric operations have a higher priority than
224224comparison operations):
225225
@@ -229,7 +229,7 @@ \subsection{Numeric Types \label{typesnumeric}}
229229 \hline
230230 \lineiii {\var {x} * \var {y}}{product of \var {x} and \var {y}}{}
231231 \lineiii {\var {x} / \var {y}}{quotient of \var {x} and \var {y}}{(1)}
232- \lineiii {\var {x} \% {} \var {y}}{remainder of \code {\var {x} / \var {y}}}{}
232+ \lineiii {\var {x} \% {} \var {y}}{remainder of \code {\var {x} / \var {y}}}{(4) }
233233 \hline
234234 \lineiii {-\var {x}}{\var {x} negated}{}
235235 \lineiii {+\var {x}}{\var {x} unchanged}{}
@@ -240,7 +240,7 @@ \subsection{Numeric Types \label{typesnumeric}}
240240 \lineiii {float(\var {x})}{\var {x} converted to floating point}{}
241241 \lineiii {complex(\var {re},\var {im})}{a complex number with real part \var {re}, imaginary part \var {im}. \var {im} defaults to zero.}{}
242242 \lineiii {\var {c}.conjugate()}{conjugate of the complex number \var {c}}{}
243- \lineiii {divmod(\var {x}, \var {y})}{the pair \code {(\var {x} / \var {y}, \var {x} \% {} \var {y})}}{(3)}
243+ \lineiii {divmod(\var {x}, \var {y})}{the pair \code {(\var {x} / \var {y}, \var {x} \% {} \var {y})}}{(3)(4) }
244244 \lineiii {pow(\var {x}, \var {y})}{\var {x} to the power \var {y}}{}
245245 \lineiii {\var {x} ** \var {y}}{\var {x} to the power \var {y}}{}
246246\end {tableiii }
@@ -273,6 +273,12 @@ \subsection{Numeric Types \label{typesnumeric}}
273273See section \ref {built-in-funcs }, `` Built-in Functions,'' for a full
274274description.
275275
276+ \item [(4)]
277+ Complex floor division operator, modulo operator, and \function {divmod()}.
278+
279+ \deprecated {2.3}{Instead convert to float using \function {abs()}
280+ if appropriate.}
281+
276282\end {description }
277283% XXXJH exceptions: overflow (when? what operations?) zerodivision
278284
0 commit comments