Commit 6bdbc9e0 authored by Tim Peters's avatar Tim Peters

SF bug 590366: Small typo in listsort:ParseTuple

The PyArg_ParseTuple() error string still said "msort".  Changed to "sort".
parent 30e0beab
...@@ -1619,7 +1619,7 @@ listsort(PyListObject *self, PyObject *args) ...@@ -1619,7 +1619,7 @@ listsort(PyListObject *self, PyObject *args)
assert(self != NULL); assert(self != NULL);
if (args != NULL) { if (args != NULL) {
if (!PyArg_ParseTuple(args, "|O:msort", &compare)) if (!PyArg_ParseTuple(args, "|O:sort", &compare))
return NULL; return NULL;
} }
merge_init(&ms, compare); merge_init(&ms, compare);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment