diff options
author | Collin Winter <collinw@gmail.com> | 2007-05-18 23:11:24 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-05-18 23:11:24 (GMT) |
commit | 6290305e6722c20e17d3c73bd6a30c6448bead83 (patch) | |
tree | fc3cc9d13179cb407116ebac000400c9c294140a /Python/graminit.c | |
parent | 6eb7bede72f044b0b6a73551c04281defc7fc489 (diff) | |
download | cpython-6290305e6722c20e17d3c73bd6a30c6448bead83.zip cpython-6290305e6722c20e17d3c73bd6a30c6448bead83.tar.gz cpython-6290305e6722c20e17d3c73bd6a30c6448bead83.tar.bz2 |
Backport PEP 3110's new 'except' syntax to 2.6.
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 33ef64b..1f74504 100644 --- a/Python/graminit.c +++ b/Python/graminit.c @@ -931,7 +931,8 @@ static arc arcs_42_1[2] = { {26, 2}, {0, 1}, }; -static arc arcs_42_2[2] = { +static arc arcs_42_2[3] = { + {78, 3}, {27, 3}, {0, 2}, }; @@ -944,7 +945,7 @@ static arc arcs_42_4[1] = { static state states_42[5] = { {1, arcs_42_0}, {2, arcs_42_1}, - {2, arcs_42_2}, + {3, arcs_42_2}, {1, arcs_42_3}, {1, arcs_42_4}, }; |