summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorMark Summerfield <list@qtrac.plus.com>2008-07-01 14:42:30 (GMT)
committerMark Summerfield <list@qtrac.plus.com>2008-07-01 14:42:30 (GMT)
commit9557f60f9163b0cedd416f7ddf29f14093c7b210 (patch)
treea535836e9692c437df3c50cf598ad46e65f0578e /Doc/whatsnew
parent8a250aeb2127683edb2bb10fdc529b94cd06afe3 (diff)
downloadcpython-9557f60f9163b0cedd416f7ddf29f14093c7b210.zip
cpython-9557f60f9163b0cedd416f7ddf29f14093c7b210.tar.gz
cpython-9557f60f9163b0cedd416f7ddf29f14093c7b210.tar.bz2
- removed sentence about the new free format floating-point representation
since I believe that's been abandoned. - added __round__() to datamodel page's list of numeric special methods.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.0.rst4
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/whatsnew/3.0.rst b/Doc/whatsnew/3.0.rst
index 7611891..15c9463 100644
--- a/Doc/whatsnew/3.0.rst
+++ b/Doc/whatsnew/3.0.rst
@@ -342,10 +342,6 @@ language and built-in functions.
* :func:`exec` is now a function.
-* There is a new free format floating point representation, which is based on
- "Floating-Point Printer Sample Code", by Robert G. Burger. ``repr(11./5)``
- now returns ``2.2`` instead of ``2.2000000000000002``.
-
* The :meth:`__oct__` and :meth:`__hex__` special methods are removed --
:func:`oct` and :func:`hex` use :meth:`__index__` now to convert the argument
to an integer.