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

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


https://hg.python.org/cpython/rev/da735eb8b7a2
changeset:   102393:da735eb8b7a2
parent:      102391:8823c660820e
parent:      102392:7ffb7f3c345d
user:        Steve Dower <steve.dower at microsoft.com>
date:        Sun Jul 17 21:40:06 2016 -0700
summary:
  Issue #27309: Enables proper Windows styles in python[w].exe manifest.

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


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -39,6 +39,10 @@
 - Issue #27369: In test_pyexpat, avoid testing an error message detail that
   changed in Expat 2.2.0.
 
+Windows
+-------
+
+- Issue #27309: Enables proper Windows styles in python[w].exe manifest.
 
 What's New in Python 3.6.0 alpha 3
 ==================================
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