summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2008-02-21 17:46:16 (GMT)
committerGuido van Rossum <guido@python.org>2008-02-21 17:46:16 (GMT)
commitb5e2684a1a7091239109b9f91be6c36fc75fdccb (patch)
treee86a576d6d030144a7227a85272a61084dbdd663
parent2d6c13e733c0850723a30254eb8b89fd8515c4f8 (diff)
downloadcpython-b5e2684a1a7091239109b9f91be6c36fc75fdccb.zip
cpython-b5e2684a1a7091239109b9f91be6c36fc75fdccb.tar.gz
cpython-b5e2684a1a7091239109b9f91be6c36fc75fdccb.tar.bz2
Remove news about float repr() -- issue 1580 is still in limbo.
-rw-r--r--Misc/NEWS4
1 files changed, 0 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f4d1cc5..970e230 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -139,10 +139,6 @@ Core and builtins
- Issue #1620: New property decorator syntax was modifying the decorator
in place instead of creating a new decorator object.
-- Issue #1580: New free format floating point representation based on
- "Floating-Point Printer Sample Code", by Robert G. Burger. For example
- repr(11./5) now returns '2.2' instead of '2.2000000000000002'.
-
- Issue #1538: Avoid copying string in split/rsplit if the split
char is not found.