summaryrefslogtreecommitdiff
path: root/tests/snippets/python/test_fstring_31a.txt
blob: eac01679c65c1d413b97e55740638a0837ff7ac1 (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
'= }'         Literal.String.Interpol
'"'           Literal.String.Double
'\n'          Text