summaryrefslogtreecommitdiff
path: root/tests/snippets/python/test_fstring_32b.txt
blob: 9e08725291f8955c4fb2b0c83d7e694590a8dd51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---input---
f"*{n=:30}*"

---tokens---
'f'           Literal.String.Affix
'"'           Literal.String.Double
'*'           Literal.String.Double
'{'           Literal.String.Interpol
'n'           Name
'=:'          Literal.String.Interpol
'30'          Literal.String.Double
'}'           Literal.String.Interpol
'*'           Literal.String.Double
'"'           Literal.String.Double
'\n'          Text