diff options
author | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-03-17 06:33:25 (GMT) |
commit | cce1090d49ba91cdc06c60d8a2af04d057abe7dc (patch) | |
tree | 8b866b9986508cfb7cec89ab4fb5e1c269756b8f /Doc/lib/libmpz.tex | |
parent | c9a4438c16c66af5b196adf172fd3416ac4ec9d3 (diff) | |
download | cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.zip cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.gz cpython-cce1090d49ba91cdc06c60d8a2af04d057abe7dc.tar.bz2 |
Change "\," to just "," in function signatures. This is easier to maintain,
works better with LaTeX2HTML, and allows some simplification of the python.sty
macros.
Diffstat (limited to 'Doc/lib/libmpz.tex')
-rw-r--r-- | Doc/lib/libmpz.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libmpz.tex b/Doc/lib/libmpz.tex index 07b2170..1c4b19f 100644 --- a/Doc/lib/libmpz.tex +++ b/Doc/lib/libmpz.tex @@ -37,17 +37,17 @@ A number of \emph{extra} functions are defined in this module. Non mpz-arguments are converted to mpz-values first, and the functions return mpz-numbers. -\begin{funcdesc}{powm}{base\, exponent\, modulus} +\begin{funcdesc}{powm}{base, exponent, modulus} Return \code{pow(\var{base}, \var{exponent}) \%{} \var{modulus}}. If \code{\var{exponent} == 0}, return \code{mpz(1)}. In contrast to the \C-library function, this version can handle negative exponents. \end{funcdesc} -\begin{funcdesc}{gcd}{op1\, op2} +\begin{funcdesc}{gcd}{op1, op2} Return the greatest common divisor of \var{op1} and \var{op2}. \end{funcdesc} -\begin{funcdesc}{gcdext}{a\, b} +\begin{funcdesc}{gcdext}{a, b} Return a tuple \code{(\var{g}, \var{s}, \var{t})}, such that \code{\var{a}*\var{s} + \var{b}*\var{t} == \var{g} == gcd(\var{a}, \var{b})}. \end{funcdesc} @@ -61,7 +61,7 @@ return mpz-numbers. \code{\var{root}*\var{root} + \var{remainder} == \var{op}}. \end{funcdesc} -\begin{funcdesc}{divm}{numerator\, denominator\, modulus} +\begin{funcdesc}{divm}{numerator, denominator, modulus} Returns a number \var{q}. such that \code{\var{q} * \var{denominator} \%{} \var{modulus} == \var{numerator}}. One could also implement this function in Python, using \code{gcdext}. |