Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions Lib/site.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def removeduppaths():
# if they only differ in case); turn relative paths into absolute
# paths.
dir, dircase = makepath(dir)
if not dircase in known_paths:
if dircase not in known_paths:
L.append(dir)
known_paths.add(dircase)
sys.path[:] = L
Expand Down Expand Up @@ -279,9 +279,11 @@ def addusersitepackages(known_paths):
"""
# get the per user site-package path
# this call will also make sure USER_BASE and USER_SITE are set
user_site = getusersitepackages()
if not ENABLE_USER_SITE:
return known_paths

if ENABLE_USER_SITE and os.path.isdir(user_site):
user_site = getusersitepackages()
if os.path.isdir(user_site):
addsitedir(user_site, known_paths)
return known_paths

Expand Down