mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-10 13:32:24 +00:00
17 lines
458 B
Plaintext
17 lines
458 B
Plaintext
# SyntaxError: f-string expression part cannot include a backslash
|
|
|
|
---input---
|
|
f"{\"quoted string\"}"
|
|
|
|
---tokens---
|
|
'f' Literal.String.Affix
|
|
'"' Literal.String.Double
|
|
'{' Literal.String.Interpol
|
|
'\\' Error
|
|
'"' Literal.String.Double
|
|
'quoted string' Literal.String.Double
|
|
'\\"' Literal.String.Escape
|
|
'}' Literal.String.Double
|
|
'"' Literal.String.Double
|
|
'\n' Text.Whitespace
|