summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-08-28 13:35:02 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-08-28 13:35:02 (GMT)
commit7f265b7fac81de000fe57a7e6ab6ad5a141c1342 (patch)
treea29866c197970f35554c8e4ffda5415ad49c53bc /Misc
parentfa680dcd2ff4d6d0a734a8bf8b91807b5e0c65ac (diff)
downloadcpython-7f265b7fac81de000fe57a7e6ab6ad5a141c1342.zip
cpython-7f265b7fac81de000fe57a7e6ab6ad5a141c1342.tar.gz
cpython-7f265b7fac81de000fe57a7e6ab6ad5a141c1342.tar.bz2
Merged revisions 74564 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r74564 | mark.dickinson | 2009-08-28 14:25:02 +0100 (Fri, 28 Aug 2009) | 3 lines 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 06c60f5..7bf34a5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -72,6 +72,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 #6117: Fix O(n**2) performance degradation when outputting lots of
small data on a buffered socket.socket.makefile() object.