summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-09-30 06:18:26 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-09-30 06:18:26 (GMT)
commit1c33daf14330ad1ecdef574dcb40f409777247fd (patch)
tree0a76058f5cc63aa2fbf3482592c52b0ad62be464
parent8b13b3ede270bf6f7bf3427675e335ab0bd0f75b (diff)
downloadcpython-1c33daf14330ad1ecdef574dcb40f409777247fd.zip
cpython-1c33daf14330ad1ecdef574dcb40f409777247fd.tar.gz
cpython-1c33daf14330ad1ecdef574dcb40f409777247fd.tar.bz2
Correct docs for long(float).
-rw-r--r--Doc/lib/libfuncs.tex3
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex
index 2eca466..8eccc82 100644
--- a/Doc/lib/libfuncs.tex
+++ b/Doc/lib/libfuncs.tex
@@ -489,8 +489,7 @@ the interpreter.
Otherwise, the argument may be a plain or
long integer or a floating point number, and a long integer with
the same value is returned. Conversion of floating
- point numbers to integers is defined by the C semantics;
- see the description of \function{int()}.
+ point numbers to integers truncates (towards zero).
\end{funcdesc}
\begin{funcdesc}{map}{function, list, ...}