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