summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2020-09-04 01:04:08 +1000
committerDamien George <damien@micropython.org>2020-09-04 10:45:39 +1000
commit5e69926ea06cc035e831fcb657e756764682e0b5 (patch)
treebba78c4e72a8584c8793b0ff20c84e574d0b2e4a
parent38959ed8f11970d47f4e07b720a590e65e80dc35 (diff)
stm32/mpconfigport.h: Enable MICROPY_PY_REVERSE_SPECIAL_METHODS.
It's a useful core feature. Signed-off-by: Damien George <damien@micropython.org>
-rw-r--r--ports/stm32/mpconfigport.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/stm32/mpconfigport.h b/ports/stm32/mpconfigport.h
index 6f38d90e8..14a058989 100644
--- a/ports/stm32/mpconfigport.h
+++ b/ports/stm32/mpconfigport.h
@@ -100,6 +100,7 @@
#define MICROPY_PY_BUILTINS_SLICE_INDICES (1)
#define MICROPY_PY_BUILTINS_ROUND_INT (1)
#define MICROPY_PY_ALL_SPECIAL_METHODS (1)
+#define MICROPY_PY_REVERSE_SPECIAL_METHODS (1)
#define MICROPY_PY_BUILTINS_COMPILE (MICROPY_ENABLE_COMPILER)
#define MICROPY_PY_BUILTINS_EXECFILE (MICROPY_ENABLE_COMPILER)
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (1)