summaryrefslogtreecommitdiffstats
path: root/tests/snippets/python/test_fstring_30a.txt
blob: 3db443e1af5c978daf72b5af65bb6cd06c2de40f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---input---
f"{ chr(65) =}"

---tokens---
'f'           Literal.String.Affix
'"'           Literal.String.Double
'{'           Literal.String.Interpol
' '           Text.Whitespace
'chr'         Name.Builtin
'('           Punctuation
'65'          Literal.Number.Integer
')'           Punctuation
' '           Text.Whitespace
'=}'          Literal.String.Interpol
'"'           Literal.String.Double
'\n'          Text.Whitespace