Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d87c3d3

Browse files
committed
Issue #16067: Merge with 3.3
2 parents e633bed + 78fa5e3 commit d87c3d3

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -763,6 +763,9 @@ Windows
763763
Build
764764
-----
765765

766+
- Issue #16067: Add description into MSI file to replace installer's
767+
temporary name.
768+
766769
- Issue #18257: Fix readlink usage in python-config. Install the python
767770
version again on Darwin.
768771

Tools/msi/msi.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1415,7 +1415,10 @@ def merge(msi, feature, rootdir, modules):
14151415
# certname (from config.py) should be (a substring of)
14161416
# the certificate subject, e.g. "Python Software Foundation"
14171417
if certname:
1418-
os.system('signtool sign /n "%s" /t http://timestamp.verisign.com/scripts/timestamp.dll %s' % (certname, msiname))
1418+
os.system('signtool sign /n "%s" '
1419+
'/t http://timestamp.verisign.com/scripts/timestamp.dll '
1420+
'/d "Python %s" '
1421+
'%s' % (certname, full_current_version, msiname))
14191422

14201423
if pdbzip:
14211424
build_pdbzip()

0 commit comments

Comments
 (0)