summaryrefslogtreecommitdiffstatshomepage
path: root/py/modarray.c
diff options
context:
space:
mode:
Diffstat (limited to 'py/modarray.c')
-rw-r--r--py/modarray.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/py/modarray.c b/py/modarray.c
index 51c221fff3..d8ff7158ff 100644
--- a/py/modarray.c
+++ b/py/modarray.c
@@ -9,16 +9,19 @@ STATIC const mp_map_elem_t mp_module_array_globals_table[] = {
{ MP_OBJ_NEW_QSTR(MP_QSTR_array), (mp_obj_t)&mp_type_array },
};
-STATIC const mp_map_t mp_module_array_globals = {
- .all_keys_are_qstrs = 1,
- .table_is_fixed_array = 1,
- .used = sizeof(mp_module_array_globals_table) / sizeof(mp_map_elem_t),
- .alloc = sizeof(mp_module_array_globals_table) / sizeof(mp_map_elem_t),
- .table = (mp_map_elem_t*)mp_module_array_globals_table,
+STATIC const mp_obj_dict_t mp_module_array_globals = {
+ .base = {&mp_type_dict},
+ .map = {
+ .all_keys_are_qstrs = 1,
+ .table_is_fixed_array = 1,
+ .used = sizeof(mp_module_array_globals_table) / sizeof(mp_map_elem_t),
+ .alloc = sizeof(mp_module_array_globals_table) / sizeof(mp_map_elem_t),
+ .table = (mp_map_elem_t*)mp_module_array_globals_table,
+ },
};
const mp_obj_module_t mp_module_array = {
.base = { &mp_type_module },
.name = MP_QSTR_array,
- .globals = (mp_map_t*)&mp_module_array_globals,
+ .globals = (mp_obj_dict_t*)&mp_module_array_globals,
};