summaryrefslogtreecommitdiffstats
path: root/tests/snippets/python/test_fstring_30b.txt
blob: 5f082e532eb80c74da8ffe26914468aee7f63c3d (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.Single
'{'           Literal.String.Interpol
' '           Text.Whitespace
'chr'         Name.Builtin
'('           Punctuation
'65'          Literal.Number.Integer
')'           Punctuation
' '           Text.Whitespace
'=}'          Literal.String.Interpol
"'"           Literal.String.Single
'\n'          Text.Whitespace