Skip to content

Commit 0fc633c

Browse files
authored
Merge pull request #47 from Eclips4/fstring-grammar-rebased-after-sprint
2 parents 95b5d07 + 277550c commit 0fc633c

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Lib/test/test_ast.py

-5
Original file line numberDiff line numberDiff line change
@@ -774,11 +774,6 @@ def test_parenthesized_with_feature_version(self):
774774
ast.parse('with (CtxManager() as example): ...', feature_version=(3, 8))
775775
ast.parse('with CtxManager() as example: ...', feature_version=(3, 8))
776776

777-
def test_debug_f_string_feature_version(self):
778-
ast.parse('f"{x=}"', feature_version=(3, 8))
779-
with self.assertRaises(SyntaxError):
780-
ast.parse('f"{x=}"', feature_version=(3, 7))
781-
782777
def test_assignment_expression_feature_version(self):
783778
ast.parse('(x := 0)', feature_version=(3, 8))
784779
with self.assertRaises(SyntaxError):

0 commit comments

Comments
 (0)