summaryrefslogtreecommitdiff
path: root/PC
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-05-16 11:04:44 -0700
committerSteve Dower <steve.dower@microsoft.com>2016-05-16 11:04:44 -0700
commitdc953a507827fb43433e79dad391071a8b48a02f (patch)
treee838d5d8fa4d13157dcb1feb80b0d3e22c5739e7 /PC
parent7ae61af8278c9a27caf508d6dece62bd4f5f552f (diff)
downloadcpython-git-dc953a507827fb43433e79dad391071a8b48a02f.tar.gz
Fixes magic numbers for 3.6.
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 6297ed72d6..db5226e466 100644
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -1082,7 +1082,7 @@ static PYC_MAGIC magic_values[] = {
{ 3190, 3230, L"3.3" },
{ 3250, 3310, L"3.4" },
{ 3320, 3350, L"3.5" },
- { 3350, 3350, L"3.6" },
+ { 3360, 3361, L"3.6" },
{ 0 }
};