Commit 4f168582 authored by Mark Dickinson's avatar Mark Dickinson

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

parent d94aec0c
......@@ -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();
......
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