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