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:
Jim Mussared
2022-08-18 14:47:56 +10:00
parent dfe232d000
commit 1bf2dcb15e
67 changed files with 280 additions and 280 deletions

View File

@@ -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