summaryrefslogtreecommitdiffstats
path: root/tests/snippets/python/test_fstring_02b.txt
blob: c72a77b83a2c83c28839f95923a525b87e480a19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---input---
f"He said his name is {name!r}."

---tokens---
'f'           Literal.String.Affix
'"'           Literal.String.Double
'He said his name is ' Literal.String.Double
'{'           Literal.String.Interpol
'name'        Name
'!r}'         Literal.String.Interpol
'.'           Literal.String.Double
'"'           Literal.String.Double
'\n'          Text.Whitespace