diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2022-08-17 16:18:31 +1000 |
---|---|---|
committer | Jim Mussared <jim.mussared@gmail.com> | 2023-06-08 17:53:57 +1000 |
commit | 30628d1bb782006c88325a086ddfcd5c2e5ddbb4 (patch) | |
tree | 7935210e303630cd0594d40e565a29a114774e33 /extmod/moduselect.c | |
parent | d080d427ebcc263ac6ff792271cec1506e5c81fc (diff) | |
download | micropython-30628d1bb782006c88325a086ddfcd5c2e5ddbb4.tar.gz micropython-30628d1bb782006c88325a086ddfcd5c2e5ddbb4.zip |
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>
Diffstat (limited to 'extmod/moduselect.c')
-rw-r--r-- | extmod/moduselect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extmod/moduselect.c b/extmod/moduselect.c index 128154a4b6..4df0f4d561 100644 --- a/extmod/moduselect.c +++ b/extmod/moduselect.c @@ -355,7 +355,7 @@ STATIC mp_obj_t select_poll(void) { MP_DEFINE_CONST_FUN_OBJ_0(mp_select_poll_obj, select_poll); STATIC const mp_rom_map_elem_t mp_module_select_globals_table[] = { - { MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_uselect) }, + { MP_ROM_QSTR(MP_QSTR___name__), MP_ROM_QSTR(MP_QSTR_select) }, #if MICROPY_PY_USELECT_SELECT { MP_ROM_QSTR(MP_QSTR_select), MP_ROM_PTR(&mp_select_select_obj) }, #endif @@ -373,6 +373,6 @@ const mp_obj_module_t mp_module_uselect = { .globals = (mp_obj_dict_t *)&mp_module_select_globals, }; -MP_REGISTER_MODULE(MP_QSTR_uselect, mp_module_uselect); +MP_REGISTER_MODULE(MP_QSTR_select, mp_module_uselect); #endif // MICROPY_PY_USELECT |