summaryrefslogtreecommitdiffstats
path: root/Grammar
diff options
context:
space:
mode:
authorShantanu <12621235+hauntsaninja@users.noreply.github.com>2022-07-18 21:10:49 (GMT)
committerGitHub <noreply@github.com>2022-07-18 21:10:49 (GMT)
commit0daba822212cd5d6c63384a27f390f0945330c2b (patch)
tree8a03ae55dbe6da2d90189b8c6595c6324977cf25 /Grammar
parent73eab9f35ca17c7c3b813c717673934b0ab8ed64 (diff)
downloadcpython-0daba822212cd5d6c63384a27f390f0945330c2b.zip
cpython-0daba822212cd5d6c63384a27f390f0945330c2b.tar.gz
cpython-0daba822212cd5d6c63384a27f390f0945330c2b.tar.bz2
gh-94949: Disallow parsing parenthesised ctx mgr with old feature_version (#94950)
* gh-94949: Disallow parsing parenthesised ctx manager with old feature_version * 📜🤖 Added by blurb_it. * Allow it with feature_version=(3, 9) as well Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Grammar')
-rw-r--r--Grammar/python.gram2
1 files changed, 1 insertions, 1 deletions
diff --git a/Grammar/python.gram b/Grammar/python.gram
index 6a8bb94..6a81e14 100644
--- a/Grammar/python.gram
+++ b/Grammar/python.gram
@@ -391,7 +391,7 @@ for_stmt[stmt_ty]:
with_stmt[stmt_ty]:
| invalid_with_stmt_indent
| 'with' '(' a[asdl_withitem_seq*]=','.with_item+ ','? ')' ':' b=block {
- _PyAST_With(a, b, NULL, EXTRA) }
+ CHECK_VERSION(stmt_ty, 9, "Parenthesized context managers are", _PyAST_With(a, b, NULL, 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 {