[Python-checkins] python/dist/src/Misc NEWS,1.1270,1.1271

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Wed Mar 9 17:38:49 CET 2005


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

Modified Files:
	NEWS 
Log Message:
operator.itemgetter() and operator.attrgetter() now support extraction
of multiple fields.  This provides direct support for sorting by
multiple keys.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.1270
retrieving revision 1.1271
diff -u -d -r1.1270 -r1.1271
--- NEWS	8 Mar 2005 15:03:01 -0000	1.1270
+++ NEWS	9 Mar 2005 16:38:31 -0000	1.1271
@@ -47,6 +47,10 @@
 Extension Modules
 -----------------
 
+- operator.itemgetter() and operator.attrgetter() now support retrieving
+  multiple fields.  This provides direct support for sorting on multiple
+  keys (primary, secondary, etc).
+
 - os.access now supports Unicode path names on non-Win32 systems.
 
 - Patches #925152, #1118602: Avoid reading after the end of the buffer



More information about the Python-checkins mailing list