diff options
author | Raymond Hettinger <python@rcn.com> | 2008-05-31 03:24:31 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-05-31 03:24:31 (GMT) |
commit | 6d7702ecd11e067f72029244b3f7aa8baa3ed2fc (patch) | |
tree | 7b20e6e1287adeb64fdd4e2c2033d9a8bcf3cb92 /Misc/NEWS | |
parent | adff65bc3e49f58c637d7cb5b72b10268b4d7efd (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |