summaryrefslogtreecommitdiff
path: root/tests/snippets/python/test_fstring_12a.txt
blob: cc8eeab4a96229999aa8606e71739198b21fe805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---input---
f'''{x
+1}'''

---tokens---
'f'           Literal.String.Affix
"'''"         Literal.String.Single
'{'           Literal.String.Interpol
'x'           Name
'\n'          Text

'+'           Operator
'1'           Literal.Number.Integer
'}'           Literal.String.Interpol
"'''"         Literal.String.Single
'\n'          Text