提交 edc7a8bf 编写于 作者: D Damien George

py/objgenerator: Use mp_obj_new_exception_arg1 to make StopIteration.

上级 edbb73a4
......@@ -243,7 +243,7 @@ STATIC mp_obj_t gen_resume_and_raise(mp_obj_t self_in, mp_obj_t send_value, mp_o
if (ret == mp_const_none || ret == MP_OBJ_STOP_ITERATION) {
return MP_OBJ_STOP_ITERATION;
} else {
nlr_raise(mp_obj_new_exception_args(&mp_type_StopIteration, 1, &ret));
nlr_raise(mp_obj_new_exception_arg1(&mp_type_StopIteration, ret));
}
case MP_VM_RETURN_YIELD:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册