diff options
Diffstat (limited to 'py')
-rw-r--r-- | py/builtin.h | 2 | ||||
-rw-r--r-- | py/modstruct.c | 6 | ||||
-rw-r--r-- | py/objmodule.c | 2 | ||||
-rw-r--r-- | py/qstrdefs.h | 3 |
4 files changed, 7 insertions, 6 deletions
diff --git a/py/builtin.h b/py/builtin.h index 6bec64fdcf..829d34358b 100644 --- a/py/builtin.h +++ b/py/builtin.h @@ -87,7 +87,7 @@ extern const mp_obj_module_t mp_module_io; extern const mp_obj_module_t mp_module_math; extern const mp_obj_module_t mp_module_cmath; extern const mp_obj_module_t mp_module_micropython; -extern const mp_obj_module_t mp_module_struct; +extern const mp_obj_module_t mp_module_ustruct; extern const mp_obj_module_t mp_module_sys; extern const mp_obj_module_t mp_module_gc; diff --git a/py/modstruct.c b/py/modstruct.c index 1103e40a5b..0c4af707d6 100644 --- a/py/modstruct.c +++ b/py/modstruct.c @@ -197,7 +197,7 @@ STATIC mp_obj_t struct_pack(mp_uint_t n_args, const mp_obj_t *args) { MP_DEFINE_CONST_FUN_OBJ_VAR_BETWEEN(struct_pack_obj, 1, MP_OBJ_FUN_ARGS_MAX, struct_pack); STATIC const mp_map_elem_t mp_module_struct_globals_table[] = { - { MP_OBJ_NEW_QSTR(MP_QSTR___name__), MP_OBJ_NEW_QSTR(MP_QSTR_struct) }, + { MP_OBJ_NEW_QSTR(MP_QSTR___name__), MP_OBJ_NEW_QSTR(MP_QSTR_ustruct) }, { MP_OBJ_NEW_QSTR(MP_QSTR_calcsize), (mp_obj_t)&struct_calcsize_obj }, { MP_OBJ_NEW_QSTR(MP_QSTR_pack), (mp_obj_t)&struct_pack_obj }, { MP_OBJ_NEW_QSTR(MP_QSTR_unpack), (mp_obj_t)&struct_unpack_obj }, @@ -205,9 +205,9 @@ STATIC const mp_map_elem_t mp_module_struct_globals_table[] = { STATIC MP_DEFINE_CONST_DICT(mp_module_struct_globals, mp_module_struct_globals_table); -const mp_obj_module_t mp_module_struct = { +const mp_obj_module_t mp_module_ustruct = { .base = { &mp_type_module }, - .name = MP_QSTR_struct, + .name = MP_QSTR_ustruct, .globals = (mp_obj_dict_t*)&mp_module_struct_globals, }; diff --git a/py/objmodule.c b/py/objmodule.c index c67a9b26d9..e0fad37f0a 100644 --- a/py/objmodule.c +++ b/py/objmodule.c @@ -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 diff --git a/py/qstrdefs.h b/py/qstrdefs.h index 8550ac39ac..77277c095f 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -461,7 +461,7 @@ Q(print_exception) #endif #if MICROPY_PY_STRUCT -Q(struct) +Q(ustruct) Q(pack) Q(unpack) Q(calcsize) @@ -469,6 +469,7 @@ Q(calcsize) #if MICROPY_PY_UCTYPES Q(uctypes) +Q(struct) Q(sizeof) Q(addressof) Q(bytes_at) |