diff options
| author | Jim Mussared <jim.mussared@gmail.com> | 2021-08-04 15:35:00 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2021-08-07 13:27:09 +1000 |
| commit | bfc8e88ce165fc3d25dd12e6dc6853d3c8cd4a5e (patch) | |
| tree | e216270ac666b428fb1859a5e3668260d3eb0785 | |
| parent | 028fc815cdb63b2ea50bc1f377177b19b6a3f9cc (diff) | |
esp32/mpconfigport.h: Enable reverse and inplace special methods.
Reverse operations are supported on stm32 and rp2, and esp32 has enough
space to also enable inplace operations, to make it complete.
Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
| -rw-r--r-- | ports/esp32/mpconfigport.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ports/esp32/mpconfigport.h b/ports/esp32/mpconfigport.h index 46d8a38af..d60e2823d 100644 --- a/ports/esp32/mpconfigport.h +++ b/ports/esp32/mpconfigport.h @@ -82,6 +82,8 @@ #define MICROPY_PY_BUILTINS_RANGE_ATTRS (1) #define MICROPY_PY_BUILTINS_ROUND_INT (1) #define MICROPY_PY_ALL_SPECIAL_METHODS (1) +#define MICROPY_PY_ALL_INPLACE_SPECIAL_METHODS (1) +#define MICROPY_PY_REVERSE_SPECIAL_METHODS (1) #define MICROPY_PY_BUILTINS_COMPILE (1) #define MICROPY_PY_BUILTINS_ENUMERATE (1) #define MICROPY_PY_BUILTINS_EXECFILE (1) |
