all: Rename mp_umodule*, mp_module_umodule* to remove the "u" prefix.
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
This commit is contained in:
@@ -35,11 +35,11 @@ STATIC const mp_rom_map_elem_t mp_module_array_globals_table[] = {
|
||||
|
||||
STATIC MP_DEFINE_CONST_DICT(mp_module_array_globals, mp_module_array_globals_table);
|
||||
|
||||
const mp_obj_module_t mp_module_uarray = {
|
||||
const mp_obj_module_t mp_module_array = {
|
||||
.base = { &mp_type_module },
|
||||
.globals = (mp_obj_dict_t *)&mp_module_array_globals,
|
||||
};
|
||||
|
||||
MP_REGISTER_MODULE(MP_QSTR_array, mp_module_uarray);
|
||||
MP_REGISTER_MODULE(MP_QSTR_array, mp_module_array);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user