summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-12-04 10:06:06 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-12-04 10:06:06 (GMT)
commit6711493e4093a5742ded264f11fef1591f47ea96 (patch)
treeed144da97edc3c3e32c9ce41b514201fd017b3be /Objects/object.c
parentba31105d48625d34ad8114706bc75eb59fd27405 (diff)
downloadcpython-6711493e4093a5742ded264f11fef1591f47ea96.zip
cpython-6711493e4093a5742ded264f11fef1591f47ea96.tar.gz
cpython-6711493e4093a5742ded264f11fef1591f47ea96.tar.bz2
Issue #7430: Remove lingering reference to cmp in recursion error message.
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
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();