Issue #7430: Remove lingering reference to cmp in recursion error message.
diff --git a/Objects/object.c b/Objects/object.c
index 002acd0..b0a5471 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -603,7 +603,7 @@
 			PyErr_BadInternalCall();
 		return NULL;
 	}
-	if (Py_EnterRecursiveCall(" in cmp"))
+	if (Py_EnterRecursiveCall(" in comparison"))
 		return NULL;
 	res = do_richcompare(v, w, op);
 	Py_LeaveRecursiveCall();