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

Skip to content

Commit f3b7a25

Browse files
committed
Merged revisions 78028 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r78028 | benjamin.peterson | 2010-02-06 13:40:18 -0600 (Sat, 06 Feb 2010) | 1 line remove pointless error checking ........
1 parent 232ecb8 commit f3b7a25

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

Python/ceval.c

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3130,9 +3130,6 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
31303130
else if (cmp < 0)
31313131
goto fail;
31323132
}
3133-
/* Check errors from Compare */
3134-
if (PyErr_Occurred())
3135-
goto fail;
31363133
if (j >= total_args && kwdict == NULL) {
31373134
PyErr_Format(PyExc_TypeError,
31383135
"%U() got an unexpected "

0 commit comments

Comments
 (0)