File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ MP_DECLARE_CONST_FUN_OBJ_2(mp_op_delitem_obj);
8989
9090extern const mp_obj_module_t mp_module___main__ ;
9191extern const mp_obj_module_t mp_module_builtins ;
92- extern const mp_obj_module_t mp_module_array ;
92+ extern const mp_obj_module_t mp_module_uarray ;
9393extern const mp_obj_module_t mp_module_collections ;
9494extern const mp_obj_module_t mp_module_io ;
9595extern const mp_obj_module_t mp_module_math ;
Original file line number Diff line number Diff line change 2929#if MICROPY_PY_ARRAY
3030
3131STATIC const mp_rom_map_elem_t mp_module_array_globals_table [] = {
32- { MP_ROM_QSTR (MP_QSTR___name__ ), MP_ROM_QSTR (MP_QSTR_array ) },
32+ { MP_ROM_QSTR (MP_QSTR___name__ ), MP_ROM_QSTR (MP_QSTR_uarray ) },
3333 { MP_ROM_QSTR (MP_QSTR_array ), MP_ROM_PTR (& mp_type_array ) },
3434};
3535
3636STATIC MP_DEFINE_CONST_DICT (mp_module_array_globals , mp_module_array_globals_table );
3737
38- const mp_obj_module_t mp_module_array = {
38+ const mp_obj_module_t mp_module_uarray = {
3939 .base = { & mp_type_module },
4040 .globals = (mp_obj_dict_t * )& mp_module_array_globals ,
4141};
4242
43- MP_REGISTER_MODULE (MP_QSTR_array , mp_module_array , MICROPY_PY_ARRAY );
43+ MP_REGISTER_MODULE (MP_QSTR_uarray , mp_module_uarray , MICROPY_PY_ARRAY );
4444
4545#endif
You can’t perform that action at this time.
0 commit comments