summaryrefslogtreecommitdiffstatshomepage
path: root/py/modcollections.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-05 21:53:54 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-05 21:53:54 +0100
commit8b0535e23fb1c646103a060a4ae17e9ee6d5e887 (patch)
tree515598a971774ffa77d65cc32acfd8e3a0a7e5de /py/modcollections.c
parent60be1cf3b923aad4cbfcdc4bf9dcb527c395c3fc (diff)
downloadmicropython-8b0535e23fb1c646103a060a4ae17e9ee6d5e887.tar.gz
micropython-8b0535e23fb1c646103a060a4ae17e9ee6d5e887.zip
py: Change module globals from mp_map_t* to mp_obj_dict_t*.
Towards addressing issue #424. Had a small increase to ROM usage (order 60 bytes).
Diffstat (limited to 'py/modcollections.c')
-rw-r--r--py/modcollections.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/py/modcollections.c b/py/modcollections.c
index 3401600bb1..dbd1896f20 100644
--- a/py/modcollections.c
+++ b/py/modcollections.c
@@ -9,16 +9,19 @@ STATIC const mp_map_elem_t mp_module_collections_globals_table[] = {
{ MP_OBJ_NEW_QSTR(MP_QSTR_namedtuple), (mp_obj_t)&mp_namedtuple_obj },
};
-STATIC const mp_map_t mp_module_collections_globals = {
- .all_keys_are_qstrs = 1,
- .table_is_fixed_array = 1,
- .used = sizeof(mp_module_collections_globals_table) / sizeof(mp_map_elem_t),
- .alloc = sizeof(mp_module_collections_globals_table) / sizeof(mp_map_elem_t),
- .table = (mp_map_elem_t*)mp_module_collections_globals_table,
+STATIC const mp_obj_dict_t mp_module_collections_globals = {
+ .base = {&mp_type_dict},
+ .map = {
+ .all_keys_are_qstrs = 1,
+ .table_is_fixed_array = 1,
+ .used = sizeof(mp_module_collections_globals_table) / sizeof(mp_map_elem_t),
+ .alloc = sizeof(mp_module_collections_globals_table) / sizeof(mp_map_elem_t),
+ .table = (mp_map_elem_t*)mp_module_collections_globals_table,
+ },
};
const mp_obj_module_t mp_module_collections = {
.base = { &mp_type_module },
.name = MP_QSTR_collections,
- .globals = (mp_map_t*)&mp_module_collections_globals,
+ .globals = (mp_obj_dict_t*)&mp_module_collections_globals,
};