[python] Add FStrings support (#155)

This commit is contained in:
Yaya-Cout
2022-02-09 22:21:07 +01:00
committed by GitHub
parent 5eb0598107
commit 4f0f41be56

View File

@@ -52,6 +52,9 @@
// Support for async/await/async for/async with
#define MICROPY_PY_ASYNC_AWAIT (0)
// Support for literal string interpolation, f-strings (see PEP 498, Python 3.6+)
#define MICROPY_PY_FSTRINGS (1)
// Whether to support bytearray object
#define MICROPY_PY_BUILTINS_BYTEARRAY (1)