summaryrefslogtreecommitdiff
path: root/tests/snippets/python/test_fstring_06b.txt
blob: f98b3dc20ea19c3b5af1b2a0f87b0a5d7521c82c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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