diff options
author | Damien George <damien.p.george@gmail.com> | 2014-11-29 14:39:27 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-11-29 14:39:27 +0000 |
commit | 3b603f29ec093b77b6fad72d77becd5375310637 (patch) | |
tree | cd895173eeebc93b29f7667614d9f6c9ed900fad /extmod/moduzlib.c | |
parent | e636279fe07898c5cfd0d33197cdf79f42f76b96 (diff) | |
download | micropython-3b603f29ec093b77b6fad72d77becd5375310637.tar.gz micropython-3b603f29ec093b77b6fad72d77becd5375310637.zip |
Use MP_DEFINE_CONST_DICT macro to define module dicts.
This is just a clean-up of the code. Generated code is exactly the
same.
Diffstat (limited to 'extmod/moduzlib.c')
-rw-r--r-- | extmod/moduzlib.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/extmod/moduzlib.c b/extmod/moduzlib.c index 3659d518c9..751b064d37 100644 --- a/extmod/moduzlib.c +++ b/extmod/moduzlib.c @@ -87,16 +87,7 @@ STATIC const mp_map_elem_t mp_module_uzlib_globals_table[] = { { MP_OBJ_NEW_QSTR(MP_QSTR_decompress), (mp_obj_t)&mod_uzlib_decompress_obj }, }; -STATIC const mp_obj_dict_t mp_module_uzlib_globals = { - .base = {&mp_type_dict}, - .map = { - .all_keys_are_qstrs = 1, - .table_is_fixed_array = 1, - .used = MP_ARRAY_SIZE(mp_module_uzlib_globals_table), - .alloc = MP_ARRAY_SIZE(mp_module_uzlib_globals_table), - .table = (mp_map_elem_t*)mp_module_uzlib_globals_table, - }, -}; +STATIC MP_DEFINE_CONST_DICT(mp_module_uzlib_globals, mp_module_uzlib_globals_table); const mp_obj_module_t mp_module_uzlib = { .base = { &mp_type_module }, |