summaryrefslogtreecommitdiffstats
path: root/Python/ceval.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/Python/ceval.c b/Python/ceval.c
index 866acd2..57e478c 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -2783,6 +2783,13 @@ _PyUopExecute(_PyExecutorObject *executor, _PyInterpreterFrame *frame, PyObject
break;
}
+ case JUMP_TO_TOP:
+ {
+ pc = 0;
+ CHECK_EVAL_BREAKER();
+ break;
+ }
+
case SAVE_IP:
{
frame->prev_instr = ip_offset + oparg;