diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-09-30 06:18:26 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-09-30 06:18:26 (GMT) |
commit | 1c33daf14330ad1ecdef574dcb40f409777247fd (patch) | |
tree | 0a76058f5cc63aa2fbf3482592c52b0ad62be464 | |
parent | 8b13b3ede270bf6f7bf3427675e335ab0bd0f75b (diff) | |
download | cpython-1c33daf14330ad1ecdef574dcb40f409777247fd.zip cpython-1c33daf14330ad1ecdef574dcb40f409777247fd.tar.gz cpython-1c33daf14330ad1ecdef574dcb40f409777247fd.tar.bz2 |
Correct docs for long(float).
-rw-r--r-- | Doc/lib/libfuncs.tex | 3 |
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, ...} |