diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-14 00:58:42 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-14 00:58:42 -0400 |
commit | 39bcc16e47957bea4178a27f2ef872a78276ff40 (patch) | |
tree | be0924e5aade1dd0e4871e905e97be913d14bf53 /setuptools/site-patch.py | |
parent | 0d37c6175c7aa1f70d7d3013fd33aeb78ca1c1ea (diff) | |
download | external_python_setuptools-39bcc16e47957bea4178a27f2ef872a78276ff40.tar.gz external_python_setuptools-39bcc16e47957bea4178a27f2ef872a78276ff40.tar.bz2 external_python_setuptools-39bcc16e47957bea4178a27f2ef872a78276ff40.zip |
Remove commented code
Diffstat (limited to 'setuptools/site-patch.py')
-rw-r--r-- | setuptools/site-patch.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/setuptools/site-patch.py b/setuptools/site-patch.py index 680e9355..3e89ef2f 100644 --- a/setuptools/site-patch.py +++ b/setuptools/site-patch.py @@ -10,7 +10,6 @@ def __boot(): pic = getattr(sys, 'path_importer_cache', {}) stdpath = sys.path[len(PYTHONPATH):] mydir = os.path.dirname(__file__) - # print "searching",stdpath,sys.path for item in stdpath: if item==mydir or not item: @@ -39,8 +38,6 @@ def __boot(): else: raise ImportError("Couldn't find the real 'site' module") - # print "loaded", __file__ - known_paths = dict([(makepath(item)[1], 1) for item in sys.path]) # 2.2 comp oldpos = getattr(sys, '__egginsert', 0) # save old insertion position |