[Python-checkins] cpython (merge 3.5 -> default): Issue #26073: Update the list of magic numbers in launcher

steve.dower python-checkins at python.org
Sat Jan 16 16:48:49 EST 2016


https://hg.python.org/cpython/rev/cf868f77b400
changeset:   99941:cf868f77b400
parent:      99939:d3422b0e0cee
parent:      99940:1a2cfa52f749
user:        Steve Dower <steve.dower at microsoft.com>
date:        Sat Jan 16 13:48:31 2016 -0800
summary:
  Issue #26073: Update the list of magic numbers in launcher

files:
  Misc/NEWS     |  2 ++
  PC/launcher.c |  5 ++++-
  2 files changed, 6 insertions(+), 1 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -613,6 +613,8 @@
 Windows
 -------
 
+- Issue #26073: Update the list of magic numbers in launcher
+
 - Issue #26065: Excludes venv from library when generating embeddable
   distro.
 
diff --git a/PC/launcher.c b/PC/launcher.c
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -1079,7 +1079,10 @@
     { 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 }
 };
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list