[Python-checkins] python/dist/src/Objects listobject.c,2.130,2.131

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Fri, 02 Aug 2002 19:28:26 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv21510

Modified Files:
	listobject.c 
Log Message:
SF bug 590366:  Small typo in listsort:ParseTuple
The PyArg_ParseTuple() error string still said "msort".  Changed to "sort".


Index: listobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/listobject.c,v
retrieving revision 2.130
retrieving revision 2.131
diff -C2 -d -r2.130 -r2.131
*** listobject.c	1 Aug 2002 02:13:36 -0000	2.130
--- listobject.c	3 Aug 2002 02:28:24 -0000	2.131
***************
*** 1620,1624 ****
  	assert(self != NULL);
  	if (args != NULL) {
! 		if (!PyArg_ParseTuple(args, "|O:msort", &compare))
  			return NULL;
  	}
--- 1620,1624 ----
  	assert(self != NULL);
  	if (args != NULL) {
! 		if (!PyArg_ParseTuple(args, "|O:sort", &compare))
  			return NULL;
  	}