summaryrefslogtreecommitdiff
path: root/setuptools/site-patch.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/site-patch.py')
-rw-r--r--setuptools/site-patch.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/setuptools/site-patch.py b/setuptools/site-patch.py
index 3e89ef2f..a7d13fcd 100644
--- a/setuptools/site-patch.py
+++ b/setuptools/site-patch.py
@@ -2,7 +2,7 @@ def __boot():
import sys
import os
PYTHONPATH = os.environ.get('PYTHONPATH')
- if PYTHONPATH is None or (sys.platform=='win32' and not PYTHONPATH):
+ if PYTHONPATH is None or (sys.platform == 'win32' and not PYTHONPATH):
PYTHONPATH = []
else:
PYTHONPATH = PYTHONPATH.split(os.pathsep)
@@ -12,7 +12,7 @@ def __boot():
mydir = os.path.dirname(__file__)
for item in stdpath:
- if item==mydir or not item:
+ if item == mydir or not item:
continue # skip if current dir. on Windows, or my own directory
importer = pic.get(item)
if importer is not None:
@@ -23,7 +23,7 @@ def __boot():
break
else:
try:
- import imp # Avoid import loop in Python >= 3.3
+ import imp # Avoid import loop in Python >= 3.3
stream, path, descr = imp.find_module('site', [item])
except ImportError:
continue
@@ -38,7 +38,7 @@ def __boot():
else:
raise ImportError("Couldn't find the real 'site' module")
- known_paths = dict([(makepath(item)[1], 1) for item in sys.path]) # 2.2 comp
+ known_paths = dict([(makepath(item)[1], 1) for item in sys.path]) # 2.2 comp
oldpos = getattr(sys, '__egginsert', 0) # save old insertion position
sys.__egginsert = 0 # and reset the current one
@@ -55,7 +55,7 @@ def __boot():
for item in sys.path:
p, np = makepath(item)
- if np==nd and insert_at is None:
+ if np == nd and insert_at is None:
# We've hit the first 'system' path entry, so added entries go here
insert_at = len(new_path)
@@ -68,6 +68,6 @@ def __boot():
sys.path[:] = new_path
-if __name__=='site':
+if __name__ == 'site':
__boot()
del __boot