Skip to content
Snippets Groups Projects
Commit 93bb7dff authored by Damien George's avatar Damien George
Browse files

py/vm: Fix popping of exception block in UNWIND_JUMP opcode.

Fixes issue #1812.
parent 9e677114
No related branches found
No related tags found
No related merge requests found
......@@ -674,7 +674,7 @@ unwind_jump:;
exc_sp--; // pop exception handler
goto dispatch_loop; // run the exception handler
}
exc_sp--;
POP_EXC_BLOCK();
}
ip = (const byte*)MP_OBJ_TO_PTR(POP()); // pop destination ip for jump
if (unum != 0) {
......
# test continue within exception handler
def f():
lst = [1, 2, 3]
for x in lst:
print('a', x)
try:
if x == 2:
raise Exception
except Exception:
continue
print('b', x)
f()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment