diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-08-19 19:52:46 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-08-19 19:52:46 +0000 |
commit | 80f0ed5bb1b38a615d92bdf2b3b3dad854dd06d9 (patch) | |
tree | 3c75d17c436a3d9f6b8c9f8fa58b4ec6fa2badbe /Python/graminit.c | |
parent | d9ccf8c547f3163946462fd382991b27d4d1a4ee (diff) | |
download | cpython-git-80f0ed5bb1b38a615d92bdf2b3b3dad854dd06d9.tar.gz |
allow keyword args to be passed in after *args #3473
Diffstat (limited to 'Python/graminit.c')
-rw-r--r-- | Python/graminit.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Python/graminit.c b/Python/graminit.c index 14a41d1b2e..e65a992a64 100644 --- a/Python/graminit.c +++ b/Python/graminit.c @@ -1609,7 +1609,8 @@ static arc arcs_74_5[2] = { static arc arcs_74_6[1] = { {0, 6}, }; -static arc arcs_74_7[1] = { +static arc arcs_74_7[2] = { + {162, 5}, {31, 3}, }; static state states_74[8] = { @@ -1620,7 +1621,7 @@ static state states_74[8] = { {4, arcs_74_4}, {2, arcs_74_5}, {1, arcs_74_6}, - {1, arcs_74_7}, + {2, arcs_74_7}, }; static arc arcs_75_0[1] = { {28, 1}, |