1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-23 06:48:16 +00:00

feat(core): enable f-strings for micropython

[no changelog]
This commit is contained in:
matejcik 2021-10-04 13:09:47 +02:00 committed by matejcik
parent b957dfbddb
commit 32be2c09b9
2 changed files with 2 additions and 0 deletions

View File

@ -123,6 +123,7 @@
#define MICROPY_PY_SYS_PLATFORM "trezor"
#define MICROPY_PY_UERRNO (0)
#define MICROPY_PY_THREAD (0)
#define MICROPY_PY_FSTRINGS (1)
// extended modules
#define MICROPY_PY_UCTYPES (1)

View File

@ -131,6 +131,7 @@
#define MICROPY_PY_SYS_PLATFORM "trezor-emulator"
#define MICROPY_PY_UERRNO (0)
#define MICROPY_PY_THREAD (0)
#define MICROPY_PY_FSTRINGS (1)
// extended modules
#define MICROPY_PY_UCTYPES (1)