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