summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2008-12-11 04:20:07 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2008-12-11 04:20:07 (GMT)
commit708d58179d164087c039ff0548b36d67930df48b (patch)
tree0fe197c469108cbf36d05fec4b60438b1d74df0e /Misc
parent10b24e87e5e5f0ac421ab91fe993baf6b6e319c7 (diff)
downloadcpython-708d58179d164087c039ff0548b36d67930df48b.zip
cpython-708d58179d164087c039ff0548b36d67930df48b.tar.gz
cpython-708d58179d164087c039ff0548b36d67930df48b.tar.bz2
Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to
give correct results in the case where one argument is a quiet NaN and the other is a finite number that requires rounding. Thanks Mark Dickinson.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 01a5927..eadf9c6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -38,6 +38,10 @@ Core and Builtins
Library
-------
+- Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to
+ give correct results in the case where one argument is a quiet NaN
+ and the other is a finite number that requires rounding.
+
- Issue #4483: _dbm module now builds on systems with gdbm & gdbm_compat
libs.