summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2008-05-31 03:24:31 (GMT)
committerRaymond Hettinger <python@rcn.com>2008-05-31 03:24:31 (GMT)
commit6d7702ecd11e067f72029244b3f7aa8baa3ed2fc (patch)
tree7b20e6e1287adeb64fdd4e2c2033d9a8bcf3cb92 /Misc/NEWS
parentadff65bc3e49f58c637d7cb5b72b10268b4d7efd (diff)
downloadcpython-6d7702ecd11e067f72029244b3f7aa8baa3ed2fc.zip
cpython-6d7702ecd11e067f72029244b3f7aa8baa3ed2fc.tar.gz
cpython-6d7702ecd11e067f72029244b3f7aa8baa3ed2fc.tar.bz2
Implement heapq in terms of less-than (to match list.sort()).
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8ab9ce4..21465f2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,9 @@ Core and Builtins
Extension Modules
-----------------
+- The heapq module does comparisons using LT instead of LE. This
+ makes its implementation match that used by list.sort().
+
- Issue #2819: add full-precision summation function to math module,
based on Hettinger's ASPN Python Cookbook recipe.