Commit 8ebdcc79 authored by Ezio Melotti's avatar Ezio Melotti

silence with (void) two warnings about computed and unused value of POP()

parent a3c8a68f
......@@ -2509,13 +2509,13 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
PyObject *exit_func;
u = TOP();
if (u == Py_None) {
POP();
(void)POP();
exit_func = TOP();
SET_TOP(u);
v = w = Py_None;
}
else if (PyLong_Check(u)) {
POP();
(void)POP();
switch(PyLong_AsLong(u)) {
case WHY_RETURN:
case WHY_CONTINUE:
......
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