summaryrefslogtreecommitdiffstats
path: root/tests/snippets/python/test_fstring_11b.txt
blob: baf13701df790ce73453ae556ef20c6cbe150628 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---input---
f"""abc {a["x"]} def"""

---tokens---
'f'           Literal.String.Affix
'"""'         Literal.String.Double
'abc '        Literal.String.Double
'{'           Literal.String.Interpol
'a'           Name
'['           Punctuation
'"'           Literal.String.Double
'x'           Literal.String.Double
'"'           Literal.String.Double
']'           Punctuation
'}'           Literal.String.Interpol
' def'        Literal.String.Double
'"""'         Literal.String.Double
'\n'          Text.Whitespace