Home | History | Annotate | Download | only in python2.7

Lines Matching refs:user_site

75 USER_SITE = None
237 If the global variable ``USER_SITE`` is not initialized yet, this
240 global USER_SITE
243 if USER_SITE is not None:
244 return USER_SITE
252 USER_SITE = get_path('purelib', 'osx_framework_user')
253 return USER_SITE
255 USER_SITE = get_path('purelib', '%s_user' % os.name)
256 return USER_SITE
265 # this call will also make sure USER_BASE and USER_SITE are set
266 user_site = getusersitepackages()
268 if ENABLE_USER_SITE and os.path.isdir(user_site):
269 addsitedir(user_site, known_paths)
555 With arguments print the value of USER_BASE and/or USER_SITE separated
573 print "USER_SITE: %r (%s)" % (USER_SITE,
574 "exists" if os.path.isdir(USER_SITE) else "doesn't exist")
582 buffer.append(USER_SITE)