Browse Source

esp32/mpconfigport.h: Enable MICROPY_PY_DELATTR_SETATTR.

To align with unix and stm32 ports.
pull/6561/head
Andrew Leech 4 years ago
committed by Damien George
parent
commit
97108fce57
  1. 1
      ports/esp32/mpconfigport.h

1
ports/esp32/mpconfigport.h

@ -63,6 +63,7 @@
// control over Python builtins // control over Python builtins
#define MICROPY_PY_FUNCTION_ATTRS (1) #define MICROPY_PY_FUNCTION_ATTRS (1)
#define MICROPY_PY_DESCRIPTORS (1) #define MICROPY_PY_DESCRIPTORS (1)
#define MICROPY_PY_DELATTR_SETATTR (1)
#define MICROPY_PY_STR_BYTES_CMP_WARN (1) #define MICROPY_PY_STR_BYTES_CMP_WARN (1)
#define MICROPY_PY_BUILTINS_STR_UNICODE (1) #define MICROPY_PY_BUILTINS_STR_UNICODE (1)
#define MICROPY_PY_BUILTINS_STR_CENTER (1) #define MICROPY_PY_BUILTINS_STR_CENTER (1)

Loading…
Cancel
Save