diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-08-19 20:57:10 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-08-19 20:57:10 (GMT) |
commit | 2d735bc09876e8216bf6708bb598923e07a2ac4b (patch) | |
tree | b242296c96c8988ba3c783474c960432d13bef67 /Python/graminit.c | |
parent | de0de885f77d40ddb7e9f2afc8be5a99b9cf01ec (diff) | |
download | cpython-2d735bc09876e8216bf6708bb598923e07a2ac4b.zip cpython-2d735bc09876e8216bf6708bb598923e07a2ac4b.tar.gz cpython-2d735bc09876e8216bf6708bb598923e07a2ac4b.tar.bz2 |
allow keyword args after *args in a function call
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 e26bcc5..6f3787a 100644 --- a/Python/graminit.c +++ b/Python/graminit.c @@ -1598,7 +1598,8 @@ static arc arcs_73_5[2] = { static arc arcs_73_6[1] = { {0, 6}, }; -static arc arcs_73_7[1] = { +static arc arcs_73_7[2] = { + {161, 5}, {32, 3}, }; static state states_73[8] = { @@ -1609,7 +1610,7 @@ static state states_73[8] = { {4, arcs_73_4}, {2, arcs_73_5}, {1, arcs_73_6}, - {1, arcs_73_7}, + {2, arcs_73_7}, }; static arc arcs_74_0[1] = { {24, 1}, |