From d4fceaafb8e3f8700d9ec6ab37a51e903392f74f Mon Sep 17 00:00:00 2001 From: Xtreak Date: Sat, 2 Feb 2019 03:10:16 +0530 Subject: 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 --- Python/graminit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/graminit.c') diff --git a/Python/graminit.c b/Python/graminit.c index 6e0f19891ba..5cdde2789c7 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}, -- cgit v1.2.3