fix availability of mp_obj_array_locals_dict

This commit is contained in:
Jeff Epler 2023-09-22 13:55:08 -05:00
parent 2c70537aba
commit 51314fb7de
No known key found for this signature in database
GPG Key ID: D5BF15AB975AB4DE

View File

@ -749,7 +749,7 @@ STATIC const mp_rom_map_elem_t array_locals_dict_table[] = {
#endif #endif
}; };
STATIC MP_DEFINE_CONST_DICT(array_locals_dict, array_locals_dict_table); MP_DEFINE_CONST_DICT(mp_obj_array_locals_dict, array_locals_dict_table);
#endif #endif
#if MICROPY_PY_BUILTINS_BYTEARRAY #if MICROPY_PY_BUILTINS_BYTEARRAY