File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ Q(IndentationError)
3636Q (IndexError )
3737Q (KeyError )
3838Q (NameError )
39+ Q (NotImplementedError )
3940Q (OSError )
4041Q (SyntaxError )
4142Q (TypeError )
Original file line number Diff line number Diff line change @@ -177,6 +177,7 @@ void rt_init(void) {
177177 mp_map_add_qstr (& map_builtins , MP_QSTR_OverflowError , mp_obj_new_exception (MP_QSTR_OverflowError ));
178178 mp_map_add_qstr (& map_builtins , MP_QSTR_OSError , mp_obj_new_exception (MP_QSTR_OSError ));
179179 mp_map_add_qstr (& map_builtins , MP_QSTR_AssertionError , mp_obj_new_exception (MP_QSTR_AssertionError ));
180+ mp_map_add_qstr (& map_builtins , MP_QSTR_NotImplementedError , mp_obj_new_exception (MP_QSTR_NotImplementedError ));
180181 mp_map_add_qstr (& map_builtins , MP_QSTR_StopIteration , mp_obj_new_exception (MP_QSTR_StopIteration ));
181182
182183 // built-in objects
You can’t perform that action at this time.
0 commit comments