summaryrefslogtreecommitdiff
path: root/tests/snippets/python/test_fstring_31a.txt
blob: 3e9c091a7530a5c17e6906b641f67229c48f1932 (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.Double
'{'           Literal.String.Interpol
'chr'         Name.Builtin
'('           Punctuation
'65'          Literal.Number.Integer
')'           Punctuation
' '           Text.Whitespace
'= }'         Literal.String.Interpol
'"'           Literal.String.Double
'\n'          Text.Whitespace