From: Mark Dickinson Date: Fri, 4 Dec 2009 10:06:06 +0000 (+0000) Subject: Issue #7430: Remove lingering reference to cmp in recursion error message. X-Git-Tag: v3.2a1~2085 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6711493e4093a5742ded264f11fef1591f47ea96;p=python Issue #7430: Remove lingering reference to cmp in recursion error message. --- diff --git a/Objects/object.c b/Objects/object.c index 002acd04be..b0a54719a0 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();