SF patch #1077353: add key= argument to min and max
(First draft of patch contributed by Steven Bethard.)
diff --git a/Misc/NEWS b/Misc/NEWS
index 4029c1d..a1dfa45 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@
Core and builtins
-----------------
+- min() and max() now support key= arguments with the same meaning as in
+ list.sort().
+
Extension Modules
-----------------
@@ -19,7 +22,7 @@
-------
- heapq.nsmallest() and heapq.nlargest() now support key= arguments with
- the same meaning as for list.sort().
+ the same meaning as in list.sort().
Build