diff options
author | Damien George <damien@micropython.org> | 2021-04-14 12:55:53 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-04-14 12:55:53 +1000 |
commit | d0e014aa41e32a80a7b591d4de6f2b1ed1298e4d (patch) | |
tree | 115373ecca2a1571be377ec8cb3ad11dae8f98f4 | |
parent | fc6ea28d00ca733f3ed806cc660f94c606ded4fb (diff) | |
download | micropython-d0e014aa41e32a80a7b591d4de6f2b1ed1298e4d.tar.gz micropython-d0e014aa41e32a80a7b591d4de6f2b1ed1298e4d.zip |
mimxrt: Enable CPYTHON_COMPAT, PY_ASYNC_AWAIT, PY_ATTRTUPLE options.
This change allows running the tests in tests/basics/ without any failures
(but some tests are still skipped).
Signed-off-by: Damien George <damien@micropython.org>
-rw-r--r-- | ports/mimxrt/mpconfigport.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ports/mimxrt/mpconfigport.h b/ports/mimxrt/mpconfigport.h index 68c7a89422..65b91675a5 100644 --- a/ports/mimxrt/mpconfigport.h +++ b/ports/mimxrt/mpconfigport.h @@ -46,11 +46,9 @@ #define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ) #define MICROPY_ENABLE_SOURCE_LINE (1) #define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_TERSE) -#define MICROPY_CPYTHON_COMPAT (0) #define MICROPY_CAN_OVERRIDE_BUILTINS (1) // Control over Python builtins -#define MICROPY_PY_ASYNC_AWAIT (0) #define MICROPY_PY_BUILTINS_STR_COUNT (0) #define MICROPY_PY_BUILTINS_MEMORYVIEW (1) #define MICROPY_PY_BUILTINS_SET (1) @@ -63,7 +61,6 @@ #define MICROPY_PY___FILE__ (0) #define MICROPY_PY_MICROPYTHON_MEM_INFO (1) #define MICROPY_PY_ARRAY_SLICE_ASSIGN (1) -#define MICROPY_PY_ATTRTUPLE (0) #define MICROPY_PY_COLLECTIONS (0) #define MICROPY_PY_SYS_MAXSIZE (1) |