Searched refs:o_exc (Results 1 – 1 of 1) sorted by relevance
205 mp_obj_exception_t *o_exc = m_new_obj_maybe(mp_obj_exception_t); in mp_obj_exception_make_new() local206 if (o_exc == NULL) { in mp_obj_exception_make_new()207 o_exc = &MP_STATE_VM(mp_emergency_exception_obj); in mp_obj_exception_make_new()211 o_exc->base.type = type; in mp_obj_exception_make_new()212 o_exc->traceback_data = NULL; in mp_obj_exception_make_new()245 o_exc->args = o_tuple; in mp_obj_exception_make_new()247 return MP_OBJ_FROM_PTR(o_exc); in mp_obj_exception_make_new()
Completed in 3 milliseconds