From 1934dca6deceb8f05843173e362178700e811133 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 2 Aug 2015 20:55:37 +0100 Subject: [PATCH] bare-arm: Disable enumerate and reversed builtins to make port more bare. --- bare-arm/mpconfigport.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bare-arm/mpconfigport.h b/bare-arm/mpconfigport.h index b35f9ab463..9b7cac19b6 100644 --- a/bare-arm/mpconfigport.h +++ b/bare-arm/mpconfigport.h @@ -22,7 +22,9 @@ #define MICROPY_BUILTIN_METHOD_CHECK_SELF_ARG (0) #define MICROPY_PY_BUILTINS_BYTEARRAY (0) #define MICROPY_PY_BUILTINS_MEMORYVIEW (0) +#define MICROPY_PY_BUILTINS_ENUMERATE (0) #define MICROPY_PY_BUILTINS_FROZENSET (0) +#define MICROPY_PY_BUILTINS_REVERSED (0) #define MICROPY_PY_BUILTINS_SET (0) #define MICROPY_PY_BUILTINS_SLICE (0) #define MICROPY_PY_BUILTINS_PROPERTY (0)