all: Rename MP_QSTR_umodule to MP_QSTR_module everywhere.
This renames the builtin-modules, such that help('modules') and printing
the module object will show "module" rather than "umodule".
This work was funded through GitHub Sponsors.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
This commit is contained in:
@@ -29,7 +29,7 @@
|
||||
#if MICROPY_PY_ARRAY
|
||||
|
||||
STATIC const mp_rom_map_elem_t mp_module_array_globals_table[] = {
|
||||
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_uarray) },
|
||||
{ MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_array) },
|
||||
{ MP_ROM_QSTR(MP_QSTR_array), MP_ROM_PTR(&mp_type_array) },
|
||||
};
|
||||
|
||||
@@ -40,6 +40,6 @@ const mp_obj_module_t mp_module_uarray = {
|
||||
.globals = (mp_obj_dict_t *)&mp_module_array_globals,
|
||||
};
|
||||
|
||||
MP_REGISTER_MODULE(MP_QSTR_uarray, mp_module_uarray);
|
||||
MP_REGISTER_MODULE(MP_QSTR_array, mp_module_uarray);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user