[Python-checkins] Remove versioned executables from non-APPX packages (GH-15237)

Steve Dower webhook-mailer at python.org
Mon Aug 12 17:56:44 EDT 2019


https://github.com/python/cpython/commit/c1aeb292d206e12b900dc4f7f816246c3a57c2ac
commit: c1aeb292d206e12b900dc4f7f816246c3a57c2ac
branch: master
author: Steve Dower <steve.dower at python.org>
committer: GitHub <noreply at github.com>
date: 2019-08-12T14:56:39-07:00
summary:

Remove versioned executables from non-APPX packages (GH-15237)

files:
M PC/layout/main.py

diff --git a/PC/layout/main.py b/PC/layout/main.py
index 07b7e6d57429..e59858196249 100644
--- a/PC/layout/main.py
+++ b/PC/layout/main.py
@@ -159,9 +159,6 @@ def in_build(f, dest="", new_name=None):
         yield from in_build("python_uwp.exe", new_name="python")
         yield from in_build("pythonw_uwp.exe", new_name="pythonw")
     else:
-        yield from in_build("python.exe", new_name="python{}".format(VER_DOT))
-        yield from in_build("pythonw.exe", new_name="pythonw{}".format(VER_DOT))
-        # For backwards compatibility, but we don't reference these ourselves.
         yield from in_build("python.exe", new_name="python")
         yield from in_build("pythonw.exe", new_name="pythonw")
 



More information about the Python-checkins mailing list