SF bug 590366: Small typo in listsort:ParseTuple

The PyArg_ParseTuple() error string still said "msort".  Changed to "sort".
This commit is contained in:
Tim Peters 2002-08-03 02:28:24 +00:00
parent 30e0beab6d
commit 6bdbc9e0b1
1 changed files with 1 additions and 1 deletions

View File

@ -1619,7 +1619,7 @@ listsort(PyListObject *self, PyObject *args)
assert(self != NULL);
if (args != NULL) {
if (!PyArg_ParseTuple(args, "|O:msort", &compare))
if (!PyArg_ParseTuple(args, "|O:sort", &compare))
return NULL;
}
merge_init(&ms, compare);