mirror of
https://github.com/micropython/micropython.git
synced 2026-03-10 19:00:30 +01:00
Includes corresponding .exp files because this feature is only available in Python 3.14+. Tests for `!a` conversion specifier and space after `!` are not included because they are not supported by MicroPython. Signed-off-by: Koudai Aono <koxudaxi@gmail.com> Signed-off-by: Damien George <damien@micropython.org>
8 lines
255 B
Plaintext
8 lines
255 B
Plaintext
# Empty expression (whitespace only)
|
|
Empty expr (space): SyntaxError (correct)
|
|
Empty expr (tab): SyntaxError (correct)
|
|
Empty expr (newline): SyntaxError (correct)
|
|
|
|
# Lexer escape sequence: invalid then valid
|
|
Invalid escape sequence: SyntaxError (correct)
|