esp8266/boards: Enable reverse-special-methods on GENERIC board.
It increases the firmware size by 292 bytes. Addresses issue #5897. Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
parent
d7a162516e
commit
9f8087b448
|
@ -12,5 +12,6 @@
|
|||
#define MICROPY_VFS (1)
|
||||
|
||||
#define MICROPY_PY_FSTRINGS (0)
|
||||
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (0)
|
||||
#define MICROPY_PY_UASYNCIO (0)
|
||||
#define MICROPY_PY_UCRYPTOLIB (1)
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
#define MICROPY_PY_FSTRINGS (0)
|
||||
#define MICROPY_PY_BUILTINS_SLICE_ATTRS (0)
|
||||
#define MICROPY_PY_ALL_SPECIAL_METHODS (0)
|
||||
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (0)
|
||||
#define MICROPY_PY_SYS_STDIO_BUFFER (0)
|
||||
#define MICROPY_PY_UASYNCIO (0)
|
||||
#define MICROPY_PY_URE_SUB (0)
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
#define MICROPY_PY_BUILTINS_STR_PARTITION (0)
|
||||
#define MICROPY_PY_BUILTINS_STR_SPLITLINES (0)
|
||||
#define MICROPY_PY_BUILTINS_SLICE_INDICES (0)
|
||||
#define MICROPY_PY_REVERSE_SPECIAL_METHODS (0)
|
||||
#define MICROPY_PY_BUILTINS_COMPILE (0)
|
||||
#define MICROPY_PY_BUILTINS_EXECFILE (0)
|
||||
#define MICROPY_PY_BUILTINS_NOTIMPLEMENTED (0)
|
||||
|
|
Loading…
Reference in New Issue