Issue #7430: Remove lingering reference to cmp in recursion error message.

This commit is contained in:
Mark Dickinson 2009-12-04 10:06:06 +00:00
parent ba31105d48
commit 6711493e40
1 changed files with 1 additions and 1 deletions

View File

@ -603,7 +603,7 @@ PyObject_RichCompare(PyObject *v, PyObject *w, int op)
PyErr_BadInternalCall();
return NULL;
}
if (Py_EnterRecursiveCall(" in cmp"))
if (Py_EnterRecursiveCall(" in comparison"))
return NULL;
res = do_richcompare(v, w, op);
Py_LeaveRecursiveCall();