summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-04-23 19:15:48 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-04-23 19:15:48 (GMT)
commit4a16e3a764313c5db0348600501eb7f89ea99d61 (patch)
tree3b28a70c9a87668bd36a913b2eab28211df8eb9c
parentad476dab097c3a0701faf035974c7c1f4b916396 (diff)
downloadcpython-4a16e3a764313c5db0348600501eb7f89ea99d61.zip
cpython-4a16e3a764313c5db0348600501eb7f89ea99d61.tar.gz
cpython-4a16e3a764313c5db0348600501eb7f89ea99d61.tar.bz2
Fix int/long confusion in Misc/NEWS entry.
-rw-r--r--Misc/NEWS3
1 files changed, 1 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f4ffbb7..7db93e3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,8 +15,7 @@ Core and Builtins
- Issue #5816: complex(repr(z)) now recovers z exactly, even when
z involves nans, infs or negative zeros.
-- Issue #3166: Make long -> float (and int -> float) conversions
- correctly rounded.
+- Issue #3166: Make int -> float conversions correctly rounded.
- Issue #1869 (and many duplicates): make round(x, n) correctly
rounded for a float x, by using the decimal <-> binary conversions