diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2019-06-03 07:34:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-03 07:34:20 (GMT) |
commit | 8565f6b6db0fa9f65449b532a5056a98bad3dc37 (patch) | |
tree | eeeed2b04e30d603a40efbeb8da748325f5f74c3 /Python/graminit.c | |
parent | d9677f36fe486e86bb86f2cd59cb7fc3804bdac1 (diff) | |
download | cpython-8565f6b6db0fa9f65449b532a5056a98bad3dc37.zip cpython-8565f6b6db0fa9f65449b532a5056a98bad3dc37.tar.gz cpython-8565f6b6db0fa9f65449b532a5056a98bad3dc37.tar.bz2 |
bpo-35814: Allow unpacking in r.h.s of annotated assignment expressions (GH-13760)
Diffstat (limited to 'Python/graminit.c')
-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 0587b1c..7c40ce9 100644 --- a/Python/graminit.c +++ b/Python/graminit.c @@ -742,7 +742,7 @@ static const arc arcs_17_2[2] = { {0, 2}, }; static const arc arcs_17_3[2] = { - {47, 4}, + {81, 4}, {84, 4}, }; static const arc arcs_17_4[1] = { |