From e3aaffc8fd4fba33abc4dbf99eb9ea2433b5a597 Mon Sep 17 00:00:00 2001 From: Scott Shawcroft Date: Tue, 3 Jan 2017 15:01:31 -0800 Subject: [PATCH] esp8266: Support data descriptors because its heavily used by the Register library. Fixes #68 --- esp8266/mpconfigport.h | 1 + 1 file changed, 1 insertion(+) diff --git a/esp8266/mpconfigport.h b/esp8266/mpconfigport.h index dbfe24afd3..6fc653c4e3 100644 --- a/esp8266/mpconfigport.h +++ b/esp8266/mpconfigport.h @@ -37,6 +37,7 @@ #define MICROPY_PY_BUILTINS_SLICE (1) #define MICROPY_PY_BUILTINS_SLICE_ATTRS (1) #define MICROPY_PY_BUILTINS_PROPERTY (1) +#define MICROPY_PY_DESCRIPTORS (1) #define MICROPY_PY___FILE__ (0) #define MICROPY_PY_GC (1) #define MICROPY_PY_ARRAY (1)