mirror of https://github.com/python/cpython
Markup nits.
This commit is contained in:
parent
8307e21a2a
commit
69fa56327a
|
@ -1,14 +1,11 @@
|
||||||
\section{\module{math} ---
|
\section{\module{math} ---
|
||||||
Mathematical functions (\function{sin()} etc.).}
|
Mathematical functions}
|
||||||
|
|
||||||
\declaremodule{builtin}{math}
|
\declaremodule{builtin}{math}
|
||||||
|
|
||||||
|
|
||||||
\modulesynopsis{Mathematical functions (\function{sin()} etc.).}
|
\modulesynopsis{Mathematical functions (\function{sin()} etc.).}
|
||||||
|
|
||||||
This module is always available.
|
This module is always available. It provides access to the
|
||||||
It provides access to the mathematical functions defined by the \C{}
|
mathematical functions defined by the C standard. They are:
|
||||||
standard.
|
|
||||||
They are:
|
|
||||||
|
|
||||||
\begin{funcdesc}{acos}{x}
|
\begin{funcdesc}{acos}{x}
|
||||||
Return the arc cosine of \var{x}.
|
Return the arc cosine of \var{x}.
|
||||||
|
@ -105,7 +102,7 @@ Return the hyperbolic tangent of \var{x}.
|
||||||
\end{funcdesc}
|
\end{funcdesc}
|
||||||
|
|
||||||
Note that \function{frexp()} and \function{modf()} have a different
|
Note that \function{frexp()} and \function{modf()} have a different
|
||||||
call/return pattern than their \C{} equivalents: they take a single
|
call/return pattern than their C equivalents: they take a single
|
||||||
argument and return a pair of values, rather than returning their
|
argument and return a pair of values, rather than returning their
|
||||||
second return value through an `output parameter' (there is no such
|
second return value through an `output parameter' (there is no such
|
||||||
thing in Python).
|
thing in Python).
|
||||||
|
|
Loading…
Reference in New Issue