[Python-checkins] cpython (3.5): Issue #27309: Enables proper Windows styles in python[w].exe manifest.

steve.dower python-checkins at python.org
Mon Jul 18 00:40:17 EDT 2016


https://hg.python.org/cpython/rev/7ffb7f3c345d
changeset:   102392:7ffb7f3c345d
branch:      3.5
parent:      102390:ebf9a4c933e9
user:        Steve Dower <steve.dower at microsoft.com>
date:        Sun Jul 17 21:39:13 2016 -0700
summary:
  Issue #27309: Enables proper Windows styles in python[w].exe manifest.

files:
  Misc/NEWS          |  5 +++++
  PC/python.manifest |  6 ++++++
  2 files changed, 11 insertions(+), 0 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -123,6 +123,11 @@
 
 - Issue #27418: Fixed Tools/importbench/importbench.py.
 
+Windows
+-------
+
+- Issue #27309: Enabled proper Windows styles in python[w].exe manifest.
+
 
 What's New in Python 3.5.2?
 ===========================
diff --git a/PC/python.manifest b/PC/python.manifest
--- a/PC/python.manifest
+++ b/PC/python.manifest
@@ -16,4 +16,10 @@
       <supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>
     </application> 
   </compatibility>
+  <dependency>
+    <dependentAssembly>
+      <assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls"
+                        version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*" />
+    </dependentAssembly>
+  </dependency>
 </assembly>
\ No newline at end of file

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


More information about the Python-checkins mailing list