commit | 6711493e4093a5742ded264f11fef1591f47ea96 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Fri Dec 04 10:06:06 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Fri Dec 04 10:06:06 2009 +0000 |
tree | ed144da97edc3c3e32c9ce41b514201fd017b3be | |
parent | ba31105d48625d34ad8114706bc75eb59fd27405 [diff] |
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();