diff options
| author | Jim Mussared <jim.mussared@gmail.com> | 2022-06-22 11:24:41 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-09-19 19:06:12 +1000 |
| commit | cb0ffdd2bf25dcac3c230bdc1168d492aabaf573 (patch) | |
| tree | ecb2cc3ddcba9fe831ad262c43b1f8cce9e8a2eb /py/mpconfig.h | |
| parent | 3ac8b5851e5f4dade465d52b91ed2ccc17851263 (diff) | |
py/obj: Remove basic mp_obj_type_t sparse representation.
This makes the slots-based representation the only option.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
Diffstat (limited to 'py/mpconfig.h')
| -rw-r--r-- | py/mpconfig.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index 0045fa198..698d264d2 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -145,13 +145,6 @@ #define MICROPY_OBJ_IMMEDIATE_OBJS (MICROPY_OBJ_REPR != MICROPY_OBJ_REPR_D) #endif -#define MICROPY_OBJ_TYPE_REPR_FULL (0) -#define MICROPY_OBJ_TYPE_REPR_SLOT_INDEX (1) - -#ifndef MICROPY_OBJ_TYPE_REPR -#define MICROPY_OBJ_TYPE_REPR (MICROPY_OBJ_TYPE_REPR_FULL) -#endif - /*****************************************************************************/ /* Memory allocation policy */ |
