summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-08-28 13:25:02 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-08-28 13:25:02 (GMT)
commit7a7739d75ed505033445248a126830bedb17101b (patch)
treec86f33b1ba2046d8f47e58554f8db27eef553abd /Misc
parent429677ec38586d61cee479da9addf31ed1b2b1c0 (diff)
downloadcpython-7a7739d75ed505033445248a126830bedb17101b.zip
cpython-7a7739d75ed505033445248a126830bedb17101b.tar.gz
cpython-7a7739d75ed505033445248a126830bedb17101b.tar.bz2
Issue #6794: Fix handling of NaNs in Decimal.compare_total and
Decimal.compare_total_mag.
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 16ec78b..a63182f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -359,6 +359,9 @@ Core and Builtins
Library
-------
+- Issue #6794: Fix Decimal.compare_total and Decimal.compare_total_mag: NaN
+ payloads are now ordered by integer value rather than lexicographically.
+
- Issue #6693: New functions in site.py to get user/global site packages paths.
- The thread.lock type now supports weak references.