summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index f8a6a6e..ec6d4e3 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -1455,6 +1455,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
}
continue;
+ PREDICTED(END_FINALLY);
case END_FINALLY:
v = POP();
if (PyLong_Check(v)) {
@@ -2069,6 +2070,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
x = POP();
Py_DECREF(x);
}
+ PREDICT(END_FINALLY);
break;
}