diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-12 06:35:13 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-06-12 06:35:13 (GMT) |
commit | cf2ad555113e4afc6f8cd5ac5235deef6a3fdf82 (patch) | |
tree | 902999b38abc5e4f99f7d101e6fb0bc3dd3212a2 /PC/launcher.c | |
parent | 52855452711eb2df1900470d387b58dede3ac941 (diff) | |
parent | 3c317e76a2fe78896b546e08fa753075463e7d41 (diff) | |
download | cpython-cf2ad555113e4afc6f8cd5ac5235deef6a3fdf82.zip cpython-cf2ad555113e4afc6f8cd5ac5235deef6a3fdf82.tar.gz cpython-cf2ad555113e4afc6f8cd5ac5235deef6a3fdf82.tar.bz2 |
Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. Calling
function with generalized unpacking (PEP 448) and conflicting keyword names
could cause undefined behavior.
Diffstat (limited to 'PC/launcher.c')
-rw-r--r-- | PC/launcher.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/launcher.c b/PC/launcher.c index 9fcc41e..fa69438 100644 --- a/PC/launcher.c +++ b/PC/launcher.c @@ -1088,7 +1088,7 @@ static PYC_MAGIC magic_values[] = { { 3160, 3180, L"3.2" }, { 3190, 3230, L"3.3" }, { 3250, 3310, L"3.4" }, - { 3320, 3350, L"3.5" }, + { 3320, 3351, L"3.5" }, { 3360, 3371, L"3.6" }, { 0 } }; |