summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2008-12-11 04:19:46 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2008-12-11 04:19:46 (GMT)
commite29d435e0cefb3e1772f6de0844e628aac3cf98e (patch)
tree1fb28cdfbbc38c424bd7f3f911db0893f456dd0c /Misc
parent240028cb771d286b39952357802483cf6a5d7e2e (diff)
downloadcpython-e29d435e0cefb3e1772f6de0844e628aac3cf98e.zip
cpython-e29d435e0cefb3e1772f6de0844e628aac3cf98e.tar.gz
cpython-e29d435e0cefb3e1772f6de0844e628aac3cf98e.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 9006fdf..557151d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -74,6 +74,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 #1030250: Distutils created directories even when run with the
--dry-run option.