diff options
author | Andrew Leech <andrew@alelec.net> | 2020-10-21 08:54:46 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2020-10-21 11:11:48 +1100 |
commit | 97108fce5730f2342903e55d533ef2c30ebdfc13 (patch) | |
tree | 245d1627922438346c14b7b1813b384dd97f855e | |
parent | 32c99174e143b45d056c83a33f8de7502a82370c (diff) |
esp32/mpconfigport.h: Enable MICROPY_PY_DELATTR_SETATTR.
To align with unix and stm32 ports.
-rw-r--r-- | ports/esp32/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/esp32/mpconfigport.h b/ports/esp32/mpconfigport.h index 5bf0676b2..b63d1f895 100644 --- a/ports/esp32/mpconfigport.h +++ b/ports/esp32/mpconfigport.h @@ -63,6 +63,7 @@ // control over Python builtins #define MICROPY_PY_FUNCTION_ATTRS (1) #define MICROPY_PY_DESCRIPTORS (1) +#define MICROPY_PY_DELATTR_SETATTR (1) #define MICROPY_PY_STR_BYTES_CMP_WARN (1) #define MICROPY_PY_BUILTINS_STR_UNICODE (1) #define MICROPY_PY_BUILTINS_STR_CENTER (1) |