summaryrefslogtreecommitdiffstats
path: root/Doc/lib
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-07-26 20:02:17 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-07-26 20:02:17 (GMT)
commit7321ec437b0aef968b83137d9c638551cabab706 (patch)
tree83890a0d039e47d282d2abda1f8eb173710de3f8 /Doc/lib
parent7cf92fa1c891b53e6143e090009911c0231bb24a (diff)
downloadcpython-7321ec437b0aef968b83137d9c638551cabab706.zip
cpython-7321ec437b0aef968b83137d9c638551cabab706.tar.gz
cpython-7321ec437b0aef968b83137d9c638551cabab706.tar.bz2
SF bug #444510: int() should guarantee truncation.
It's guaranteed now, assuming the platform modf() works correctly.
Diffstat (limited to 'Doc/lib')
-rw-r--r--Doc/lib/libfuncs.tex4
1 files changed, 1 insertions, 3 deletions
diff --git a/Doc/lib/libfuncs.tex b/Doc/lib/libfuncs.tex
index e493375..12b7cf7 100644
--- a/Doc/lib/libfuncs.tex
+++ b/Doc/lib/libfuncs.tex
@@ -338,9 +338,7 @@ module from which it is called).
\exception{TypeError} is raised.
Otherwise, the argument may be a plain or
long integer or a floating point number. Conversion of floating
- point numbers to integers is defined by the C semantics; normally
- the conversion truncates towards zero.\footnote{This is ugly --- the
- language definition should require truncation towards zero.}
+ point numbers to integers truncates (towards zero).
\end{funcdesc}
\begin{funcdesc}{intern}{string}