|
|
|
|
|
by zahlman
305 days ago
|
|
t-strings with str.format-like limitations on what can be substituted in, except the t is actually an operator that applies at compile time when its argument is a literal and at runtime otherwise. And then f is another such operator that sugars over a standard library format(t '{...}') call. (I've been thinking about this for a while, actually. Since PEP 751 was still in discussion.) |
|