diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-12-04 10:06:06 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-12-04 10:06:06 (GMT) |
commit | 6711493e4093a5742ded264f11fef1591f47ea96 (patch) | |
tree | ed144da97edc3c3e32c9ce41b514201fd017b3be | |
parent | ba31105d48625d34ad8114706bc75eb59fd27405 (diff) | |
download | cpython-6711493e4093a5742ded264f11fef1591f47ea96.zip cpython-6711493e4093a5742ded264f11fef1591f47ea96.tar.gz cpython-6711493e4093a5742ded264f11fef1591f47ea96.tar.bz2 |
Issue #7430: Remove lingering reference to cmp in recursion error message.
-rw-r--r-- | Objects/object.c | 2 |
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(); |