From: Mark Dickinson Date: Fri, 30 Jul 2010 13:13:54 +0000 (+0000) Subject: Merged revisions 83277 via svnmerge from X-Git-Tag: v3.1.3rc1~452 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ce3f2ccdd318ace6de8515bfcf2ae72ec231a64;p=python Merged revisions 83277 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83277 | mark.dickinson | 2010-07-30 14:13:02 +0100 (Fri, 30 Jul 2010) | 1 line Add note about surprising behaviour from round function. ........ --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 5160e08544..a287732082 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -961,6 +961,13 @@ are always available. They are listed here in alphabetical order. The return value is an integer if called with one argument, otherwise of the same type as *x*. + .. note:: + + The behavior of :func:`round` for floats can be surprising: for example, + ``round(2.675, 2)`` gives ``2.67`` instead of the expected ``2.68``. + This is not a bug: it's a result of the fact that most decimal fractions + can't be represented exactly as a float. See :ref:`tut-fp-issues` for + more information. .. function:: set([iterable]) :noindex: