diff options
author | Steve Dower <steve.dower@python.org> | 2019-08-12 21:56:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-12 21:56:39 (GMT) |
commit | c1aeb292d206e12b900dc4f7f816246c3a57c2ac (patch) | |
tree | 09fa11a9a521eaecf30feea804adb8e4188723d7 /PC/layout | |
parent | 3e34a25a7a5c9ea2c46f2daeeb60f072faa5aaa1 (diff) | |
download | cpython-c1aeb292d206e12b900dc4f7f816246c3a57c2ac.zip cpython-c1aeb292d206e12b900dc4f7f816246c3a57c2ac.tar.gz cpython-c1aeb292d206e12b900dc4f7f816246c3a57c2ac.tar.bz2 |
Remove versioned executables from non-APPX packages (GH-15237)
Diffstat (limited to 'PC/layout')
-rw-r--r-- | PC/layout/main.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/PC/layout/main.py b/PC/layout/main.py index 07b7e6d..e598581 100644 --- a/PC/layout/main.py +++ b/PC/layout/main.py @@ -159,9 +159,6 @@ def get_layout(ns): 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") |