diff --git a/Objects/object.c b/Objects/object.c index b2c7c140ae0..3a6db18b2de 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -601,7 +601,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();