1 parent c203324 commit 60a0d3fCopy full SHA for 60a0d3f
1 file changed
py/objexcept.c
@@ -53,6 +53,7 @@ STATIC mp_obj_t exception_call(mp_obj_t self_in, uint n_args, uint n_kw, const m
53
54
mp_obj_exception_t *o = m_new_obj_var(mp_obj_exception_t, mp_obj_t, n_args);
55
o->base.type = &exception_type;
56
+ o->traceback = MP_OBJ_NULL;
57
o->id = base->id;
58
o->msg = NULL;
59
o->args.len = n_args;
0 commit comments