summaryrefslogtreecommitdiffstats
path: root/tests/snippets/python/test_fstring_12b.txt
blob: 878b7a0bf7af95b06d888cd3761e9f66c68f8d70 (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.Whitespace

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