From 0e6873840b820e75da29585ed3e4b9fefdf2e90b Mon Sep 17 00:00:00 2001 From: Damien George Date: Tue, 26 Apr 2022 22:15:07 +1000 Subject: [PATCH] rp2/mpconfigport: Enable execfile, NotImplemented and REPL EMACS keys. To bring this port in line with other ports that use MICROPY_CONFIG_ROM_LEVEL_EXTRA_FEATURES. Signed-off-by: Damien George --- ports/rp2/mpconfigport.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ports/rp2/mpconfigport.h b/ports/rp2/mpconfigport.h index 98e58dee9d..0ca704755a 100644 --- a/ports/rp2/mpconfigport.h +++ b/ports/rp2/mpconfigport.h @@ -60,12 +60,6 @@ // Optimisations #define MICROPY_OPT_COMPUTED_GOTO (1) -// Features currently overriden for rp2, planned to be brought in line with -// other ports -#define MICROPY_PY_BUILTINS_EXECFILE (0) -#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (0) -#define MICROPY_REPL_EMACS_KEYS (0) - // Python internal features #define MICROPY_READER_VFS (1) #define MICROPY_ENABLE_GC (1)