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

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