Trivial cleanup: remove redundant variable stores in ceval.c (#2012)

Redundant code leftover from cleanup in #16191: the variable `err` is being written to, even though it wasn't used after that point.
This commit is contained in:
Adrian Wielgosik 2017-06-23 13:35:41 -07:00 committed by Antoine Pitrou
parent 48fbe52ac7
commit 50c2850fc8
1 changed files with 1 additions and 6 deletions

View File

@ -1267,7 +1267,6 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
else if (err > 0) { else if (err > 0) {
Py_INCREF(Py_False); Py_INCREF(Py_False);
SET_TOP(Py_False); SET_TOP(Py_False);
err = 0;
DISPATCH(); DISPATCH();
} }
STACKADJ(-1); STACKADJ(-1);
@ -2855,7 +2854,7 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
err = PyObject_IsTrue(cond); err = PyObject_IsTrue(cond);
Py_DECREF(cond); Py_DECREF(cond);
if (err > 0) if (err > 0)
err = 0; ;
else if (err == 0) else if (err == 0)
JUMPTO(oparg); JUMPTO(oparg);
else else
@ -2879,7 +2878,6 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
err = PyObject_IsTrue(cond); err = PyObject_IsTrue(cond);
Py_DECREF(cond); Py_DECREF(cond);
if (err > 0) { if (err > 0) {
err = 0;
JUMPTO(oparg); JUMPTO(oparg);
} }
else if (err == 0) else if (err == 0)
@ -2905,7 +2903,6 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
if (err > 0) { if (err > 0) {
STACKADJ(-1); STACKADJ(-1);
Py_DECREF(cond); Py_DECREF(cond);
err = 0;
} }
else if (err == 0) else if (err == 0)
JUMPTO(oparg); JUMPTO(oparg);
@ -2928,7 +2925,6 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
} }
err = PyObject_IsTrue(cond); err = PyObject_IsTrue(cond);
if (err > 0) { if (err > 0) {
err = 0;
JUMPTO(oparg); JUMPTO(oparg);
} }
else if (err == 0) { else if (err == 0) {
@ -3221,7 +3217,6 @@ _PyEval_EvalFrameDefault(PyFrameObject *f, int throwflag)
if (err < 0) if (err < 0)
goto error; goto error;
else if (err > 0) { else if (err > 0) {
err = 0;
/* There was an exception and a True return */ /* There was an exception and a True return */
PUSH(PyLong_FromLong((long) WHY_SILENCED)); PUSH(PyLong_FromLong((long) WHY_SILENCED));
} }