summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index b2c7c14..3a6db18 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();