]> granicus.if.org Git - python/commitdiff
Issue #26073: Update the list of magic numbers in launcher
authorSteve Dower <steve.dower@microsoft.com>
Sat, 16 Jan 2016 21:48:06 +0000 (13:48 -0800)
committerSteve Dower <steve.dower@microsoft.com>
Sat, 16 Jan 2016 21:48:06 +0000 (13:48 -0800)
Misc/NEWS
PC/launcher.c

index 0609cc425869e06603a2c5787451884260663bb3..6aa74cafca2e4409ff0687db3b0a49e7462cfb04 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -173,6 +173,8 @@ Build
 Windows
 -------
 
+- Issue #26073: Update the list of magic numbers in launcher
+
 - Issue #26065: Excludes venv from library when generating embeddable
   distro.
 
index 36edc321a543ee6963d43a1c6f36e938020ebe15..8aef49a6288314b1bc1e863c89547301f14c30bd 100644 (file)
@@ -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 }
 };