summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-12-02 08:59:14 (GMT)
committerRaymond Hettinger <python@rcn.com>2004-12-02 08:59:14 (GMT)
commit4901a1f267e9d632f85054ce8b21ff23bff305e1 (patch)
tree27fdb176c85c194cc32d9a72d4812860bd2c4fb6 /Misc
parentde7b99045d6ee40c2f6b0abbf9d1b5345d9cf15e (diff)
downloadcpython-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/NEWS40
1 files changed, 40 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index d200265..4029c1d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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?
===============================