From 65fc79e31f186ffd6ae7ca153c4ce3a453bedea3 Mon Sep 17 00:00:00 2001 From: Bob Abeles Date: Wed, 6 Sep 2023 20:25:39 -0700 Subject: [PATCH] backout remaining changes to py --- py/objint.c | 1 - py/runtime.h | 1 - 2 files changed, 2 deletions(-) diff --git a/py/objint.c b/py/objint.c index b5de5ebdc5..83987d690a 100644 --- a/py/objint.c +++ b/py/objint.c @@ -438,7 +438,6 @@ mp_int_t mp_obj_int_get_checked(mp_const_obj_t self_in) { return MP_OBJ_SMALL_INT_VALUE(self_in); } - #endif // MICROPY_LONGINT_IMPL == MICROPY_LONGINT_IMPL_NONE // This dispatcher function is expected to be independent of the implementation of long int diff --git a/py/runtime.h b/py/runtime.h index 4a00752402..5ecab91e99 100644 --- a/py/runtime.h +++ b/py/runtime.h @@ -53,7 +53,6 @@ typedef enum { typedef union _mp_arg_val_t { bool u_bool; mp_int_t u_int; - mp_uint_t u_uint; mp_obj_t u_obj; mp_rom_obj_t u_rom_obj; } mp_arg_val_t;