[Python-checkins] python/dist/src/Objects listobject.c,2.221,2.222

akuchling at users.sourceforge.net akuchling at users.sourceforge.net
Fri Sep 10 15:00:01 CEST 2004


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

Modified Files:
	listobject.c 
Log Message:
Typo fix: 'comparisions' is not a word

Index: listobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/listobject.c,v
retrieving revision 2.221
retrieving revision 2.222
diff -u -d -r2.221 -r2.222
--- listobject.c	13 Aug 2004 03:18:27 -0000	2.221
+++ listobject.c	10 Sep 2004 12:59:54 -0000	2.222
@@ -1759,7 +1759,7 @@
 }
 
 /* Special wrapper to support stable sorting using the decorate-sort-undecorate
-   pattern.  Holds a key which is used for comparisions and the original record
+   pattern.  Holds a key which is used for comparisons and the original record
    which is returned during the undecorate phase.  By exposing only the key
    during comparisons, the underlying sort stability characteristics are left
    unchanged.  Also, if a custom comparison function is used, it will only see



More information about the Python-checkins mailing list