diff options
author | Damien George <damien@micropython.org> | 2021-08-26 23:27:46 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-08-26 23:56:02 +1000 |
commit | 8c4ba575fdd7730e71b339643f51ffadefbedb76 (patch) | |
tree | 1ada6627b806224e0c0105eff167e7c71b1d5d37 /tools/tinytest-codegen.py | |
parent | 145fedef8d74a504c4b7c000e6c305602d07feff (diff) |
tests/basics: Split f-string debug printing to separate file with .exp.
This feature {x=} was introduced in Python 3.8 so needs a separate .exp
file to run on earlier Python versions.
See https://bugs.python.org/issue36817
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tools/tinytest-codegen.py')
-rwxr-xr-x | tools/tinytest-codegen.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/tinytest-codegen.py b/tools/tinytest-codegen.py index ddbe62b84..f1169a34d 100755 --- a/tools/tinytest-codegen.py +++ b/tools/tinytest-codegen.py @@ -101,6 +101,7 @@ exclude_tests = ( "misc/sys_settrace_features.py", # don't have f-string "basics/string_fstring.py", + "basics/string_fstring_debug.py", ) output = [] |