Kaydet (Commit) 6bdbc9e0 authored tarafından 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".
üst 30e0beab
......@@ -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);
......
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