[Python-checkins] python/dist/src/Misc ACKS, 1.289, 1.290 NEWS, 1.1194, 1.1195

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Fri Dec 3 09:30:41 CET 2004


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14724/Misc

Modified Files:
	ACKS NEWS 
Log Message:
SF patch #1077353: add key= argument to min and max

(First draft of patch contributed by Steven Bethard.)



Index: ACKS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/ACKS,v
retrieving revision 1.289
retrieving revision 1.290
diff -u -d -r1.289 -r1.290
--- ACKS	10 Nov 2004 13:13:05 -0000	1.289
+++ ACKS	3 Dec 2004 08:30:35 -0000	1.290
@@ -52,6 +52,7 @@
 Andy Bensky
 Michel Van den Bergh
 Eric Beser
+Steven Bethard
 Stephen Bevan
 Ron Bickers
 Dominic Binks

Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1194
retrieving revision 1.1195
diff -u -d -r1.1194 -r1.1195
--- NEWS	2 Dec 2004 08:59:14 -0000	1.1194
+++ NEWS	3 Dec 2004 08:30:36 -0000	1.1195
@@ -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



More information about the Python-checkins mailing list