mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Merged revisions 76663 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r76663 | mark.dickinson | 2009-12-04 10:06:06 +0000 (Fri, 04 Dec 2009) | 1 line Issue #7430: Remove lingering reference to cmp in recursion error message. ........
This commit is contained in:
parent
8054a5d36e
commit
adef1ba534
1 changed files with 1 additions and 1 deletions
|
@ -601,7 +601,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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue