Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit adef1ba

Browse files
committed
Merged revisions 76663 via svnmerge from
svn+ssh://[email protected]/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. ........
1 parent 8054a5d commit adef1ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/object.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,7 +601,7 @@ PyObject_RichCompare(PyObject *v, PyObject *w, int op)
601601
PyErr_BadInternalCall();
602602
return NULL;
603603
}
604-
if (Py_EnterRecursiveCall(" in cmp"))
604+
if (Py_EnterRecursiveCall(" in comparison"))
605605
return NULL;
606606
res = do_richcompare(v, w, op);
607607
Py_LeaveRecursiveCall();

0 commit comments

Comments
 (0)