We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 95b5d07 + 277550c commit 0fc633cCopy full SHA for 0fc633c
Lib/test/test_ast.py
@@ -774,11 +774,6 @@ def test_parenthesized_with_feature_version(self):
774
ast.parse('with (CtxManager() as example): ...', feature_version=(3, 8))
775
ast.parse('with CtxManager() as example: ...', feature_version=(3, 8))
776
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
-
782
def test_assignment_expression_feature_version(self):
783
ast.parse('(x := 0)', feature_version=(3, 8))
784
with self.assertRaises(SyntaxError):
0 commit comments