From 8094a02e713672abd2ee3e35801f2930b5987c12 Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Thu, 7 Jun 2018 17:37:54 +0200 Subject: [PATCH] [python] Don't compile MICROPY_HELPER_REPL for nothing --- python/port/mpconfigport.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/python/port/mpconfigport.h b/python/port/mpconfigport.h index 9d3124ede..b301cc05b 100644 --- a/python/port/mpconfigport.h +++ b/python/port/mpconfigport.h @@ -20,9 +20,6 @@ // Whether to provide the mp_kbd_exception object, and micropython.kbd_intr function #define MICROPY_KBD_EXCEPTION (1) -// Whether to include REPL helper function -#define MICROPY_HELPER_REPL (1) - // Long int implementation #define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)