py/emitnative: Fix try-finally in outer scope, so finally is cancelled.

This commit is contained in:
Damien George
2018-09-11 15:33:25 +10:00
parent 67ee4e2401
commit f2de9d60f7
2 changed files with 13 additions and 1 deletions

View File

@@ -914,7 +914,7 @@ STATIC void emit_native_label_assign(emit_t *emit, mp_uint_t l) {
if (is_finally) {
// Label is at start of finally handler: pop exception stack
emit_native_leave_exc_stack(emit, true);
emit_native_leave_exc_stack(emit, false);
}
}