diff options
author | Damien George <damien@micropython.org> | 2024-06-06 17:31:19 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-06-06 17:34:28 +1000 |
commit | 3c8089d1b10683ee31ddbaeebd0b18c47bf6d09d (patch) | |
tree | 4a4ff4cd7d0591cf45e8fe34273903cb1fe3e4bc /tests/cpydiff/core_fstring_raw.py | |
parent | a066f2308f7b0d872352073cec0a945dca3a7a9c (diff) | |
download | micropython-3c8089d1b10683ee31ddbaeebd0b18c47bf6d09d.tar.gz micropython-3c8089d1b10683ee31ddbaeebd0b18c47bf6d09d.zip |
py/lexer: Support raw f-strings.
Support for raw str/bytes already exists, and extending that to raw
f-strings is easy. It also reduces code size because it eliminates an
error message.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/cpydiff/core_fstring_raw.py')
-rw-r--r-- | tests/cpydiff/core_fstring_raw.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/cpydiff/core_fstring_raw.py b/tests/cpydiff/core_fstring_raw.py deleted file mode 100644 index 84e265f70f..0000000000 --- a/tests/cpydiff/core_fstring_raw.py +++ /dev/null @@ -1,8 +0,0 @@ -""" -categories: Core -description: Raw f-strings are not supported -cause: MicroPython is optimised for code space. -workaround: Unknown -""" - -rf"hello" |