ruff/crates/ruff_python_parser/resources/valid/expressions
Dylan 9bbf4987e8
Implement template strings (#17851)
This PR implements template strings (t-strings) in the parser and
formatter for Ruff.

Minimal changes necessary to compile were made in other parts of the code (e.g. ty, the linter, etc.). These will be covered properly in follow-up PRs.
2025-05-30 15:00:56 -05:00
..
arguments.py
attribute.py Replace LALRPOP parser with hand-written parser (#10036) 2024-04-18 17:57:39 +05:30
await.py
bin_op.py
bool_op.py
call.py
compare.py
dictionary.py
dictionary_comprehension.py
f_string.py
generator.py
if.py
lambda.py Replace LALRPOP parser with hand-written parser (#10036) 2024-04-18 17:57:39 +05:30
list.py
list_comprehension.py
name.py
named.py
number_literal.py
parenthesized.py
set.py Replace LALRPOP parser with hand-written parser (#10036) 2024-04-18 17:57:39 +05:30
set_comprehension.py
slice.py
starred.py
string.py
subscript.py Replace LALRPOP parser with hand-written parser (#10036) 2024-04-18 17:57:39 +05:30
t_string.py Implement template strings (#17851) 2025-05-30 15:00:56 -05:00
tuple.py
unary_op.py
yield.py [syntax-errors] Starred expressions in return, yield, and for (#17134) 2025-04-02 08:38:25 -04:00
yield_from.py