summaryrefslogtreecommitdiffstats
path: root/PC
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-01-16 21:48:31 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2016-01-16 21:48:31 (GMT)
commitca9aab19ab34b7300d1d6b3f2ab3a6a636e92a88 (patch)
treefedce481bd1bdd511e432ac764b87e16fd809e99 /PC
parentc3cd76a2a18dd36f0600fe313120ebf04904fc15 (diff)
parent87fb7f64d867ebf752637fda1d982b1cd07b407e (diff)
downloadcpython-ca9aab19ab34b7300d1d6b3f2ab3a6a636e92a88.zip
cpython-ca9aab19ab34b7300d1d6b3f2ab3a6a636e92a88.tar.gz
cpython-ca9aab19ab34b7300d1d6b3f2ab3a6a636e92a88.tar.bz2
Issue #26073: Update the list of magic numbers in launcher
Diffstat (limited to 'PC')
-rw-r--r--PC/launcher.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/PC/launcher.c b/PC/launcher.c
index e6baae5..eac01f8 100644
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -1079,7 +1079,10 @@ static PYC_MAGIC magic_values[] = {
{ 0x0bb8, 0x0c3b, L"3.0" },
{ 0x0c45, 0x0c4f, L"3.1" },
{ 0x0c58, 0x0c6c, L"3.2" },
- { 0x0c76, 0x0c76, L"3.3" },
+ { 0x0c76, 0x0c9e, L"3.3" },
+ { 0x0cb2, 0x0cee, L"3.4" },
+ { 0x0cf8, 0x0d16, L"3.5" },
+ { 0x0d20, 0x0d20, L"3.6" },
{ 0 }
};