diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-08-28 13:35:02 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-08-28 13:35:02 (GMT) |
commit | 7f265b7fac81de000fe57a7e6ab6ad5a141c1342 (patch) | |
tree | a29866c197970f35554c8e4ffda5415ad49c53bc /Misc | |
parent | fa680dcd2ff4d6d0a734a8bf8b91807b5e0c65ac (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |