summaryrefslogtreecommitdiff
path: root/tests/snippets/python/test_fstring_12b.txt
blob: 160b2d915210ca6037996fc0484943dd0fceb42c (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.Double
'{'           Literal.String.Interpol
'x'           Name
'\n'          Text

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