summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Waygood <Alex.Waygood@Gmail.com>2024-02-26 09:22:09 (GMT)
committerGitHub <noreply@github.com>2024-02-26 09:22:09 (GMT)
commit7a3518e43aa50ea57fd35863da831052749b6115 (patch)
treebfd5cdecb5d3d71a74f2ec7f4fbf3981c0e2a20c
parent8e8ab75d97f51c2850eb8cd711010662d5f1d360 (diff)
downloadcpython-7a3518e43aa50ea57fd35863da831052749b6115.zip
cpython-7a3518e43aa50ea57fd35863da831052749b6115.tar.gz
cpython-7a3518e43aa50ea57fd35863da831052749b6115.tar.bz2
gh-115881: Ensure `ast.parse()` parses conditional context managers even with low `feature_version` passed (#115920)
-rw-r--r--Grammar/python.gram2
-rw-r--r--Lib/test/test_ast.py12
-rw-r--r--Lib/test/test_type_comments.py2
-rw-r--r--Misc/NEWS.d/next/Library/2024-02-25-19-20-05.gh-issue-115881.ro_Kuw.rst4
-rw-r--r--Parser/parser.c2
5 files changed, 11 insertions, 11 deletions
diff --git a/Grammar/python.gram b/Grammar/python.gram
index 174b4db..797c195 100644
--- a/Grammar/python.gram
+++ b/Grammar/python.gram
@@ -393,7 +393,7 @@ for_stmt[stmt_ty]:
with_stmt[stmt_ty]:
| invalid_with_stmt_indent
| 'with' '(' a[asdl_withitem_seq*]=','.with_item+ ','? ')' ':' tc=[TYPE_COMMENT] b=block {
- CHECK_VERSION(stmt_ty, 9, "Parenthesized context managers are", _PyAST_With(a, b, NEW_TYPE_COMMENT(p, tc), EXTRA)) }
+ _PyAST_With(a, b, NEW_TYPE_COMMENT(p, tc), EXTRA) }
| 'with' a[asdl_withitem_seq*]=','.with_item+ ':' tc=[TYPE_COMMENT] b=block {
_PyAST_With(a, b, NEW_TYPE_COMMENT(p, tc), EXTRA) }
| 'async' 'with' '(' a[asdl_withitem_seq*]=','.with_item+ ','? ')' ':' b=block {
diff --git a/Lib/test/test_ast.py b/Lib/test/test_ast.py
index 3789ac2..d49c149 100644
--- a/Lib/test/test_ast.py
+++ b/Lib/test/test_ast.py
@@ -1045,19 +1045,15 @@ class AST_Tests(unittest.TestCase):
with self.assertRaises(SyntaxError):
ast.parse('lambda x=1, /: ...', feature_version=(3, 7))
- def test_parenthesized_with_feature_version(self):
- ast.parse('with (CtxManager() as example): ...', feature_version=(3, 10))
- # While advertised as a feature in Python 3.10, this was allowed starting 3.9
- ast.parse('with (CtxManager() as example): ...', feature_version=(3, 9))
- with self.assertRaises(SyntaxError):
- ast.parse('with (CtxManager() as example): ...', feature_version=(3, 8))
- ast.parse('with CtxManager() as example: ...', feature_version=(3, 8))
-
def test_assignment_expression_feature_version(self):
ast.parse('(x := 0)', feature_version=(3, 8))
with self.assertRaises(SyntaxError):
ast.parse('(x := 0)', feature_version=(3, 7))
+ def test_conditional_context_managers_parse_with_low_feature_version(self):
+ # regression test for gh-115881
+ ast.parse('with (x() if y else z()): ...', feature_version=(3, 8))
+
def test_exception_groups_feature_version(self):
code = dedent('''
try: ...
diff --git a/Lib/test/test_type_comments.py b/Lib/test/test_type_comments.py
index 5a911da..ee8939f 100644
--- a/Lib/test/test_type_comments.py
+++ b/Lib/test/test_type_comments.py
@@ -309,7 +309,7 @@ class TypeCommentTests(unittest.TestCase):
self.assertEqual(tree.body[0].type_comment, None)
def test_parenthesized_withstmt(self):
- for tree in self.parse_all(parenthesized_withstmt, minver=9):
+ for tree in self.parse_all(parenthesized_withstmt):
self.assertEqual(tree.body[0].type_comment, "int")
self.assertEqual(tree.body[1].type_comment, "int")
tree = self.classic_parse(parenthesized_withstmt)
diff --git a/Misc/NEWS.d/next/Library/2024-02-25-19-20-05.gh-issue-115881.ro_Kuw.rst b/Misc/NEWS.d/next/Library/2024-02-25-19-20-05.gh-issue-115881.ro_Kuw.rst
new file mode 100644
index 0000000..99bccb2
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-02-25-19-20-05.gh-issue-115881.ro_Kuw.rst
@@ -0,0 +1,4 @@
+Fix issue where :func:`ast.parse` would incorrectly flag conditional context
+managers (such as ``with (x() if y else z()): ...``) as invalid syntax if
+``feature_version=(3, 8)`` was passed. This reverts changes to the
+grammar made as part of gh-94949.
diff --git a/Parser/parser.c b/Parser/parser.c
index 779b18e..f1170c2 100644
--- a/Parser/parser.c
+++ b/Parser/parser.c
@@ -6603,7 +6603,7 @@ with_stmt_rule(Parser *p)
UNUSED(_end_lineno); // Only used by EXTRA macro
int _end_col_offset = _token->end_col_offset;
UNUSED(_end_col_offset); // Only used by EXTRA macro
- _res = CHECK_VERSION ( stmt_ty , 9 , "Parenthesized context managers are" , _PyAST_With ( a , b , NEW_TYPE_COMMENT ( p , tc ) , EXTRA ) );
+ _res = _PyAST_With ( a , b , NEW_TYPE_COMMENT ( p , tc ) , EXTRA );
if (_res == NULL && PyErr_Occurred()) {
p->error_indicator = 1;
p->level--;