summaryrefslogtreecommitdiffstatshomepage
path: root/bare-arm
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-06-01 13:49:54 +0100
committerDamien George <damien.p.george@gmail.com>2014-06-01 13:49:54 +0100
commitf917f06384ca478730e85638eb6ebc806a5672a3 (patch)
treee89a65b333b994bb8c0510db589056e17d070571 /bare-arm
parentc49ddb9315b8a3839439727d5a3df1f4226777e1 (diff)
downloadmicropython-f917f06384ca478730e85638eb6ebc806a5672a3.tar.gz
micropython-f917f06384ca478730e85638eb6ebc806a5672a3.zip
bare-arm: Disable slice and set.
Diffstat (limited to 'bare-arm')
-rw-r--r--bare-arm/mpconfigport.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/bare-arm/mpconfigport.h b/bare-arm/mpconfigport.h
index 19830b454f..73b66802fe 100644
--- a/bare-arm/mpconfigport.h
+++ b/bare-arm/mpconfigport.h
@@ -12,6 +12,9 @@
#define MICROPY_HELPER_REPL (0)
#define MICROPY_HELPER_LEXER_UNIX (0)
#define MICROPY_ENABLE_SOURCE_LINE (0)
+#define MICROPY_PY_BUILTINS_FROZENSET (0)
+#define MICROPY_PY_BUILTINS_SET (0)
+#define MICROPY_PY_BUILTINS_SLICE (0)
#define MICROPY_PY_BUILTINS_PROPERTY (0)
#define MICROPY_PY_COLLECTIONS (0)
#define MICROPY_PY_MATH (0)