aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/command/bdist_wininst.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2014-03-01 15:26:11 -0500
committerJason R. Coombs <jaraco@jaraco.com>2014-03-01 15:26:11 -0500
commit22d6ecdd7229d471c27374523f21d2d37173db7f (patch)
tree9f84dd4ee551bc3e501d4a27558dbaf919ce1cf8 /setuptools/command/bdist_wininst.py
parent7b7c594c8ce8b6a3e44e4a387dbc5da5a3d9094e (diff)
downloadexternal_python_setuptools-22d6ecdd7229d471c27374523f21d2d37173db7f.tar.gz
external_python_setuptools-22d6ecdd7229d471c27374523f21d2d37173db7f.tar.bz2
external_python_setuptools-22d6ecdd7229d471c27374523f21d2d37173db7f.zip
Remove get_installer_filename (copied from some version of Python now required to be supplied).
Diffstat (limited to 'setuptools/command/bdist_wininst.py')
-rwxr-xr-xsetuptools/command/bdist_wininst.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/setuptools/command/bdist_wininst.py b/setuptools/command/bdist_wininst.py
index b5be1f34..b0eb4eaa 100755
--- a/setuptools/command/bdist_wininst.py
+++ b/setuptools/command/bdist_wininst.py
@@ -37,18 +37,3 @@ class bdist_wininst(_bdist_wininst):
self._fix_upload_names()
finally:
self._is_running = False
-
- if not hasattr(_bdist_wininst, 'get_installer_filename'):
- def get_installer_filename(self, fullname):
- # Factored out to allow overriding in subclasses
- if self.target_version:
- # if we create an installer for a specific python version,
- # it's better to include this in the name
- installer_name = os.path.join(self.dist_dir,
- "%s.win32-py%s.exe" %
- (fullname, self.target_version))
- else:
- installer_name = os.path.join(self.dist_dir,
- "%s.win32.exe" % fullname)
- return installer_name
- # get_installer_filename()