summaryrefslogtreecommitdiffstats
path: root/tests/snippets/python/test_fstring_03b.txt
blob: 260e56d1bafc7037dd3ac0ae3b25651f13a48b99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
---input---
f"input={value:#06x}"

---tokens---
'f'           Literal.String.Affix
'"'           Literal.String.Double
'input='      Literal.String.Double
'{'           Literal.String.Interpol
'value'       Name
':'           Literal.String.Interpol
'#06x'        Literal.String.Double
'}'           Literal.String.Interpol
'"'           Literal.String.Double
'\n'          Text.Whitespace