summaryrefslogtreecommitdiff
path: root/PC
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-06-12 09:35:13 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2016-06-12 09:35:13 +0300
commita1aa6bca995d8532b6cecfb29e4145cb08403fda (patch)
tree99625c87b8e2ab2fe312dc7bc41aac73211d73ca /PC
parent826aa8295c78524fd810e0d7f87c8f13dc15b410 (diff)
parent657ccfb66a6830b2f54743c60fd11bb210905f06 (diff)
downloadcpython-a1aa6bca995d8532b6cecfb29e4145cb08403fda.tar.gz
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')
-rw-r--r--PC/launcher.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/launcher.c b/PC/launcher.c
index 9fcc41e22e..fa69438043 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 }
};