diff options
author | Raymond Hettinger <python@rcn.com> | 2004-12-02 08:59:14 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-12-02 08:59:14 (GMT) |
commit | 4901a1f267e9d632f85054ce8b21ff23bff305e1 (patch) | |
tree | 27fdb176c85c194cc32d9a72d4812860bd2c4fb6 /Misc | |
parent | de7b99045d6ee40c2f6b0abbf9d1b5345d9cf15e (diff) | |
download | cpython-4901a1f267e9d632f85054ce8b21ff23bff305e1.zip cpython-4901a1f267e9d632f85054ce8b21ff23bff305e1.tar.gz cpython-4901a1f267e9d632f85054ce8b21ff23bff305e1.tar.bz2 |
Add key= argument to heapq.nsmallest() and heapq.nlargest().
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 40 |
1 files changed, 40 insertions, 0 deletions
@@ -4,6 +4,46 @@ Python News (editors: check NEWS.help for information about editing NEWS using ReST.) +What's New in Python 2.5 alpha 1? +================================= + +Core and builtins +----------------- + + +Extension Modules +----------------- + + +Library +------- + +- heapq.nsmallest() and heapq.nlargest() now support key= arguments with + the same meaning as for list.sort(). + + +Build +----- + + +C API +----- + + +Tests +----- + + +Mac +--- + + + +Tools/Demos +----------- + + + What's New in Python 2.4 final? =============================== |