Kaydet (Commit) adef1ba5 authored tarafından Mark Dickinson's avatar Mark Dickinson

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.
........
üst 8054a5d3
...@@ -601,7 +601,7 @@ PyObject_RichCompare(PyObject *v, PyObject *w, int op) ...@@ -601,7 +601,7 @@ PyObject_RichCompare(PyObject *v, PyObject *w, int op)
PyErr_BadInternalCall(); PyErr_BadInternalCall();
return NULL; return NULL;
} }
if (Py_EnterRecursiveCall(" in cmp")) if (Py_EnterRecursiveCall(" in comparison"))
return NULL; return NULL;
res = do_richcompare(v, w, op); res = do_richcompare(v, w, op);
Py_LeaveRecursiveCall(); Py_LeaveRecursiveCall();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment