diff options
author | Xtreak <tir.karthi@gmail.com> | 2019-02-01 21:40:16 (GMT) |
---|---|---|
committer | Emily Morehouse <emilyemorehouse@gmail.com> | 2019-02-01 21:40:16 (GMT) |
commit | d4fceaafb8e3f8700d9ec6ab37a51e903392f74f (patch) | |
tree | fb3681a954e8d42a3a3161ad38eebcb4eeaf9884 /Python | |
parent | 85d83ec7c99727476c79feb5c34c65264a99144e (diff) | |
download | cpython-d4fceaafb8e3f8700d9ec6ab37a51e903392f74f.zip cpython-d4fceaafb8e3f8700d9ec6ab37a51e903392f74f.tar.gz cpython-d4fceaafb8e3f8700d9ec6ab37a51e903392f74f.tar.bz2 |
bpo-35877: Make parenthesis optional for named expression in while statement (GH-11724)
* Add parenthesis optional in named expressions for while statement
* Add NEWS entry
Diffstat (limited to 'Python')
-rw-r--r-- | Python/graminit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/graminit.c b/Python/graminit.c index 6e0f198..5cdde27 100644 --- a/Python/graminit.c +++ b/Python/graminit.c @@ -971,7 +971,7 @@ static arc arcs_42_0[1] = { {103, 1}, }; static arc arcs_42_1[1] = { - {26, 2}, + {99, 2}, }; static arc arcs_42_2[1] = { {27, 3}, |