Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
micropython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
micropython
Commits
5733c491
Commit
5733c491
authored
Jul 16, 2020
by
Jim Mussared
Committed by
Damien George
Aug 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stm32,esp32,rp2: Enable MICROPY_PY_FSTRINGS by default.
Signed-off-by:
Jim Mussared
<
jim.mussared@gmail.com
>
parent
692d36d7
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
0 deletions
+5
-0
ports/esp32/mpconfigport.h
ports/esp32/mpconfigport.h
+1
-0
ports/rp2/mpconfigport.h
ports/rp2/mpconfigport.h
+1
-0
ports/stm32/mpconfigport.h
ports/stm32/mpconfigport.h
+3
-0
No files found.
ports/esp32/mpconfigport.h
View file @
5733c491
...
...
@@ -66,6 +66,7 @@
#define MICROPY_PY_FUNCTION_ATTRS (1)
#define MICROPY_PY_DESCRIPTORS (1)
#define MICROPY_PY_DELATTR_SETATTR (1)
#define MICROPY_PY_FSTRINGS (1)
#define MICROPY_PY_STR_BYTES_CMP_WARN (1)
#define MICROPY_PY_BUILTINS_STR_UNICODE (1)
#define MICROPY_PY_BUILTINS_STR_CENTER (1)
...
...
ports/rp2/mpconfigport.h
View file @
5733c491
...
...
@@ -74,6 +74,7 @@
#define MICROPY_PY_FUNCTION_ATTRS (1)
#define MICROPY_PY_DESCRIPTORS (1)
#define MICROPY_PY_DELATTR_SETATTR (1)
#define MICROPY_PY_FSTRINGS (1)
#define MICROPY_PY_BUILTINS_STR_UNICODE (1)
#define MICROPY_PY_BUILTINS_STR_CENTER (1)
#define MICROPY_PY_BUILTINS_STR_PARTITION (1)
...
...
ports/stm32/mpconfigport.h
View file @
5733c491
...
...
@@ -91,6 +91,9 @@
#define MICROPY_PY_FUNCTION_ATTRS (1)
#define MICROPY_PY_DESCRIPTORS (1)
#define MICROPY_PY_DELATTR_SETATTR (1)
#ifndef MICROPY_PY_FSTRINGS
#define MICROPY_PY_FSTRINGS (1)
#endif
#define MICROPY_PY_BUILTINS_STR_UNICODE (1)
#define MICROPY_PY_BUILTINS_STR_CENTER (1)
#define MICROPY_PY_BUILTINS_STR_PARTITION (1)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment