We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95b5d07 commit 277550cCopy full SHA for 277550c
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