diff options
Diffstat (limited to 'setuptools')
-rw-r--r-- | setuptools/cli-32.exe | bin | 0 -> 65536 bytes | |||
-rw-r--r-- | setuptools/cli-64.exe | bin | 0 -> 74240 bytes | |||
-rwxr-xr-x | setuptools/cli.exe | bin | 6656 -> 0 bytes | |||
-rwxr-xr-x | setuptools/command/easy_install.py | 5 | ||||
-rw-r--r-- | setuptools/gui-32.exe | bin | 0 -> 65536 bytes | |||
-rw-r--r-- | setuptools/gui-64.exe | bin | 0 -> 74240 bytes | |||
-rwxr-xr-x | setuptools/gui.exe | bin | 7168 -> 0 bytes |
7 files changed, 3 insertions, 2 deletions
diff --git a/setuptools/cli-32.exe b/setuptools/cli-32.exe Binary files differnew file mode 100644 index 00000000..dd63bbfc --- /dev/null +++ b/setuptools/cli-32.exe diff --git a/setuptools/cli-64.exe b/setuptools/cli-64.exe Binary files differnew file mode 100644 index 00000000..cc7ced50 --- /dev/null +++ b/setuptools/cli-64.exe diff --git a/setuptools/cli.exe b/setuptools/cli.exe Binary files differdeleted file mode 100755 index 3173b2b2..00000000 --- a/setuptools/cli.exe +++ /dev/null diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 195139c7..4b03e185 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -1603,13 +1603,14 @@ def get_script_args(dist, executable=sys_executable, wininst=False): ")\n" ) % locals() if sys.platform=='win32' or wininst: + word_size = [32, 64]['amd64' in sys.version.lower()] # On Windows/wininst, add a .py extension and an .exe launcher if group=='gui_scripts': - ext, launcher = '-script.pyw', 'gui.exe' + ext, launcher = '-script.pyw', 'gui-%d.exe' % word_size old = ['.pyw'] new_header = re.sub('(?i)python.exe','pythonw.exe',header) else: - ext, launcher = '-script.py', 'cli.exe' + ext, launcher = '-script.py', 'cli-%d.exe' % word_size old = ['.py','.pyc','.pyo'] new_header = re.sub('(?i)pythonw.exe','python.exe',header) diff --git a/setuptools/gui-32.exe b/setuptools/gui-32.exe Binary files differnew file mode 100644 index 00000000..71838207 --- /dev/null +++ b/setuptools/gui-32.exe diff --git a/setuptools/gui-64.exe b/setuptools/gui-64.exe Binary files differnew file mode 100644 index 00000000..7fbfb889 --- /dev/null +++ b/setuptools/gui-64.exe diff --git a/setuptools/gui.exe b/setuptools/gui.exe Binary files differdeleted file mode 100755 index 53d4ff81..00000000 --- a/setuptools/gui.exe +++ /dev/null |