diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-07-18 21:57:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-18 21:57:45 (GMT) |
commit | 7733aa048e74a7caee9afed9be95d070c432f7e9 (patch) | |
tree | c33d564e6da64d79c7720c723439d8cfe6a00d68 /Parser/parser.c | |
parent | be84daf52aec7b963a743d0c2d66dbd175810803 (diff) | |
download | cpython-7733aa048e74a7caee9afed9be95d070c432f7e9.zip cpython-7733aa048e74a7caee9afed9be95d070c432f7e9.tar.gz cpython-7733aa048e74a7caee9afed9be95d070c432f7e9.tar.bz2 |
gh-94949: Disallow parsing parenthesised ctx mgr with old feature_version (GH-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>
(cherry picked from commit 0daba822212cd5d6c63384a27f390f0945330c2b)
Co-authored-by: Shantanu <12621235+hauntsaninja@users.noreply.github.com>
Diffstat (limited to 'Parser/parser.c')
-rw-r--r-- | Parser/parser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/parser.c b/Parser/parser.c index 91e83e9..e578fd7 100644 --- a/Parser/parser.c +++ b/Parser/parser.c @@ -6515,7 +6515,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 = _PyAST_With ( a , b , NULL , EXTRA ); + _res = CHECK_VERSION ( stmt_ty , 9 , "Parenthesized context managers are" , _PyAST_With ( a , b , NULL , EXTRA ) ); if (_res == NULL && PyErr_Occurred()) { p->error_indicator = 1; p->level--; |