mirror of
https://github.com/davidhalter/parso.git
synced 2025-12-07 05:14:29 +08:00
Allow some unparenthesized syntactic structures in f-string expression part (#159)
Resolves #157, #158
This commit is contained in:
@@ -60,6 +60,13 @@ def grammar():
|
||||
|
||||
# a line continuation inside of an format spec
|
||||
'f"{123:.2\\\nf}"',
|
||||
|
||||
# some unparenthesized syntactic structures
|
||||
'f"{*x,}"',
|
||||
'f"{*x, *y}"',
|
||||
'f"{x, *y}"',
|
||||
'f"{*x, y}"',
|
||||
'f"{x for x in [1]}"',
|
||||
]
|
||||
)
|
||||
def test_valid(code, grammar):
|
||||
|
||||
Reference in New Issue
Block a user