summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-10-07 19:24:43 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-10-07 19:24:43 (GMT)
commitb090761ec035153ff9ac192a0a17ffd7d3706830 (patch)
tree5a3486af0bd18fed9ed58348c74df1bfd176deb7 /Misc
parentbf0770dd82b8629af60cb3c16d75a436788f2eca (diff)
downloadcpython-b090761ec035153ff9ac192a0a17ffd7d3706830.zip
cpython-b090761ec035153ff9ac192a0a17ffd7d3706830.tar.gz
cpython-b090761ec035153ff9ac192a0a17ffd7d3706830.tar.bz2
Merged revisions 75276 via svnmerge from
svn+ssh://pythondev@www.python.org/python/branches/py3k ................ r75276 | mark.dickinson | 2009-10-07 20:23:50 +0100 (Wed, 07 Oct 2009) | 12 lines Merged revisions 75275 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r75275 | mark.dickinson | 2009-10-07 20:22:05 +0100 (Wed, 07 Oct 2009) | 6 lines Issue #7048: logb should round its result when that result doesn't fit into the available precision. (Tests for this change are included in the most recent set of testcases from the Decimal Specification site; those testcases will be updated shortly.) ........ ................
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0420a82..4b6ff0b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Issue #7048: Force Decimal.logb to round its result when that result
+ is too large to fit in the current precision.
+
- Issue #6236, #6348: Fix various failures in the I/O library under AIX
and other platforms, when using a non-gcc compiler. Patch by egreen.