summaryrefslogtreecommitdiff
path: root/tests/snippets/python/test_fstring_21a.txt
blob: 0107431d7150c8974f88dc1286ce29d01e276d1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---input---
f'a={d[a]}'

---tokens---
'f'           Literal.String.Affix
"'"           Literal.String.Single
'a='          Literal.String.Single
'{'           Literal.String.Interpol
'd'           Name
'['           Punctuation
'a'           Name
']'           Punctuation
'}'           Literal.String.Interpol
"'"           Literal.String.Single
'\n'          Text.Whitespace