diff options
Diffstat (limited to 'py/runtime0.h')
-rw-r--r-- | py/runtime0.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/py/runtime0.h b/py/runtime0.h index dfce041b8f..8ae8afacc7 100644 --- a/py/runtime0.h +++ b/py/runtime0.h @@ -129,12 +129,13 @@ typedef enum { MP_F_STORE_SET, #endif MP_F_MAKE_FUNCTION_FROM_RAW_CODE, - MP_F_CALL_FUNCTION_N_KW_FOR_NATIVE, + MP_F_NATIVE_CALL_FUNCTION_N_KW, MP_F_CALL_METHOD_N_KW, MP_F_GETITER, MP_F_ITERNEXT, + MP_F_NATIVE_RAISE, MP_F_IMPORT_NAME, - MP_F_IMPORT_FROM, + MP_F_IMPORT_FROM, // = 31 XXX this is the limit for thumb code... MP_F_IMPORT_ALL, #if MICROPY_PY_BUILTINS_SLICE MP_F_NEW_SLICE, |