modstruct: Rename module to "ustruct", to allow full Python-level impl.

This commit is contained in:
Paul Sokolovsky
2015-05-04 16:35:40 +03:00
parent 1829d86ef5
commit 3d3ef36e97
9 changed files with 24 additions and 10 deletions

View File

@@ -142,7 +142,7 @@ STATIC const mp_map_elem_t mp_builtin_module_table[] = {
{ MP_OBJ_NEW_QSTR(MP_QSTR__collections), (mp_obj_t)&mp_module_collections },
#endif
#if MICROPY_PY_STRUCT
{ MP_OBJ_NEW_QSTR(MP_QSTR_struct), (mp_obj_t)&mp_module_struct },
{ MP_OBJ_NEW_QSTR(MP_QSTR_ustruct), (mp_obj_t)&mp_module_ustruct },
#endif
#if MICROPY_PY_BUILTINS_FLOAT