From 6711493e4093a5742ded264f11fef1591f47ea96 Mon Sep 17 00:00:00 2001 From: Mark Dickinson Date: Fri, 4 Dec 2009 10:06:06 +0000 Subject: Issue #7430: Remove lingering reference to cmp in recursion error message. --- Objects/object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 @@ 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(); -- cgit v0.12