Kaydet (Commit) 6711493e authored tarafından Mark Dickinson's avatar Mark Dickinson

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

üst ba31105d
......@@ -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