diff options
author | Jim Mussared <jim.mussared@gmail.com> | 2022-08-18 14:47:56 +1000 |
---|---|---|
committer | Jim Mussared <jim.mussared@gmail.com> | 2023-06-08 17:54:04 +1000 |
commit | 1bf2dcb15ecf4ba37211327f4378b164a5aaf567 (patch) | |
tree | 801a5d3770aa8ed4ce7ceab2c7dcea4fd7db65cf /py/modarray.c | |
parent | dfe232d0003b9f381643050c06c547fc3093e9e1 (diff) |
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>
Diffstat (limited to 'py/modarray.c')
-rw-r--r-- | py/modarray.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/py/modarray.c b/py/modarray.c index c91e92f79..cfed0fbb5 100644 --- a/py/modarray.c +++ b/py/modarray.c @@ -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 |