summaryrefslogtreecommitdiffstatshomepage
path: root/py/vm.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/vm.c')
-rw-r--r--py/vm.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/py/vm.c b/py/vm.c
index 08749af21b..2611be683a 100644
--- a/py/vm.c
+++ b/py/vm.c
@@ -1048,7 +1048,11 @@ unwind_return:
MARK_EXC_IP_SELECTIVE();
mp_uint_t unum = *ip++;
mp_obj_t obj;
- assert(unum <= 1);
+ if (unum == 2) {
+ mp_warning("exception chaining not supported");
+ // ignore (pop) "from" argument
+ sp--;
+ }
if (unum == 0) {
// search for the inner-most previous exception, to reraise it
obj = MP_OBJ_NULL;