diff options
Diffstat (limited to 'py/mpconfig.h')
-rw-r--r-- | py/mpconfig.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/py/mpconfig.h b/py/mpconfig.h index f8404142a1..561c328926 100644 --- a/py/mpconfig.h +++ b/py/mpconfig.h @@ -235,6 +235,11 @@ typedef double mp_float_t; #define MICROPY_ENABLE_SLICE (1) #endif +// Whether to support frozenset object +#ifndef MICROPY_ENABLE_FROZENSET +#define MICROPY_ENABLE_FROZENSET (1) +#endif + // Whether to support the property object #ifndef MICROPY_ENABLE_PROPERTY #define MICROPY_ENABLE_PROPERTY (1) |