diff options
author | Guido van Rossum <guido@python.org> | 2000-05-11 18:42:27 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2000-05-11 18:42:27 (GMT) |
commit | c9a5f343bcd33a5cc4405ae298142a3d5fc73d6e (patch) | |
tree | 7e31f4337a733238e3d38cf358f84a7f5c6e7c94 /Doc | |
parent | a28518a6a645710b5c8a78e3d98da4bac828d63e (diff) | |
download | cpython-c9a5f343bcd33a5cc4405ae298142a3d5fc73d6e.zip cpython-c9a5f343bcd33a5cc4405ae298142a3d5fc73d6e.tar.gz cpython-c9a5f343bcd33a5cc4405ae298142a3d5fc73d6e.tar.bz2 |
The addition of rint() (by Peter Schneider-Kamp; I forgot to mention
that before) in the previous patch has one problem; rint() is not in
the C math library on all platforms (e.g. not for VC++). Make it
conditional on HAVE_RINT.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libmath.tex | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Doc/lib/libmath.tex b/Doc/lib/libmath.tex index f4fd2f2..c20fd7f 100644 --- a/Doc/lib/libmath.tex +++ b/Doc/lib/libmath.tex @@ -95,6 +95,7 @@ Return \code{\var{x}**\var{y}}. \begin{funcdesc}{rint}{x, y} Return the integer nearest to \var{x} as a real. +(Only available on platforms where this is in the standard C math library.) \end{funcdesc} \begin{funcdesc}{sin}{x} |