[Python-checkins] cpython (merge 3.3 -> default): Issue #16067: Merge with 3.3

martin.v.loewis python-checkins at python.org
Sat Aug 3 20:13:41 CEST 2013


http://hg.python.org/cpython/rev/7d661f47f73b
changeset:   84994:7d661f47f73b
parent:      84992:ab1859ba1a78
parent:      84993:797b1d13d16e
user:        Martin v. Löwis <martin at v.loewis.de>
date:        Sat Aug 03 20:12:45 2013 +0200
summary:
  Issue #16067: Merge with 3.3

files:
  Misc/NEWS        |  3 +++
  Tools/msi/msi.py |  5 ++++-
  2 files changed, 7 insertions(+), 1 deletions(-)


diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -763,6 +763,9 @@
 Build
 -----
 
+- Issue #16067: Add description into MSI file to replace installer's 
+  temporary name.
+
 - Issue #18257: Fix readlink usage in python-config.  Install the python
   version again on Darwin.
 
diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py
--- a/Tools/msi/msi.py
+++ b/Tools/msi/msi.py
@@ -1415,7 +1415,10 @@
 # certname (from config.py) should be (a substring of)
 # the certificate subject, e.g. "Python Software Foundation"
 if certname:
-    os.system('signtool sign /n "%s" /t http://timestamp.verisign.com/scripts/timestamp.dll %s' % (certname, msiname))
+    os.system('signtool sign /n "%s" '
+      '/t http://timestamp.verisign.com/scripts/timestamp.dll '
+      '/d "Python %s" '
+      '%s' % (certname, full_current_version, msiname))
 
 if pdbzip:
     build_pdbzip()

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


More information about the Python-checkins mailing list