summaryrefslogtreecommitdiff
path: root/setuptools/command/easy_install.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2021-01-20 21:13:41 -0500
committerJason R. Coombs <jaraco@jaraco.com>2021-01-20 21:13:41 -0500
commitfa81391fe65fa727f79f1be73f058e83ffe97193 (patch)
treec46b0973d8a7f1c582c6d0a3e117001fa8179d08 /setuptools/command/easy_install.py
parent8222d6f7b992d3b184434acb31cd66b0f2e41401 (diff)
downloadpython-setuptools-git-feature/remove-eggsecutable.tar.gz
Remove eggsecutablefeature/remove-eggsecutable
Diffstat (limited to 'setuptools/command/easy_install.py')
-rw-r--r--setuptools/command/easy_install.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py
index f1e487d4..544e8fd4 100644
--- a/setuptools/command/easy_install.py
+++ b/setuptools/command/easy_install.py
@@ -2284,16 +2284,6 @@ def current_umask():
return tmp
-def bootstrap():
- # This function is called when setuptools*.egg is run using /bin/sh
- import setuptools
-
- argv0 = os.path.dirname(setuptools.__path__[0])
- sys.argv[0] = argv0
- sys.argv.append(argv0)
- main()
-
-
def main(argv=None, **kw):
from setuptools import setup
from setuptools.dist import Distribution