diff options
Diffstat (limited to 'py/nativeglue.c')
-rw-r--r-- | py/nativeglue.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/py/nativeglue.c b/py/nativeglue.c index eb02907bdd..596793a4f6 100644 --- a/py/nativeglue.c +++ b/py/nativeglue.c @@ -210,13 +210,13 @@ const void *const mp_fun_table[MP_F_NUMBER_OF] = { mp_binary_op, mp_obj_new_tuple, mp_obj_new_list, - mp_obj_list_append, mp_obj_new_dict, - mp_obj_dict_store, #if MICROPY_PY_BUILTINS_SET - mp_obj_set_store, mp_obj_new_set, + mp_obj_set_store, #endif + mp_obj_list_append, + mp_obj_dict_store, mp_make_function_from_raw_code, mp_native_call_function_n_kw, mp_call_method_n_kw, |