diff options
author | Damien George <damien.p.george@gmail.com> | 2019-10-22 16:35:46 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-10-22 16:35:46 +1100 |
commit | 21a60935a5d5885817881b4f690fdfd3ef009100 (patch) | |
tree | f9f0b00932d8a98a5715d650cdf99667feda6b45 /py/builtin.h | |
parent | 1582c7eeb0707acc5d645c0a5a9e59d14ff7c8be (diff) | |
download | micropython-21a60935a5d5885817881b4f690fdfd3ef009100.tar.gz micropython-21a60935a5d5885817881b4f690fdfd3ef009100.zip |
py/modarray: Rename "array" module to "uarray".
Following the other modules like ustruct, ucollections.
See issues #4370 and #4449.
Diffstat (limited to 'py/builtin.h')
-rw-r--r-- | py/builtin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py/builtin.h b/py/builtin.h index a5e0f5f2d0..1928577be8 100644 --- a/py/builtin.h +++ b/py/builtin.h @@ -89,7 +89,7 @@ MP_DECLARE_CONST_FUN_OBJ_2(mp_op_delitem_obj); extern const mp_obj_module_t mp_module___main__; extern const mp_obj_module_t mp_module_builtins; -extern const mp_obj_module_t mp_module_array; +extern const mp_obj_module_t mp_module_uarray; extern const mp_obj_module_t mp_module_collections; extern const mp_obj_module_t mp_module_io; extern const mp_obj_module_t mp_module_math; |