Searched defs:USER_SITE (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Lib/distutils/command/
H A Dbuild_ext.py13 from site import USER_BASE, USER_SITE namespace
H A Dinstall.py22 from site import USER_SITE namespace
107 "install in user site-package '%s'" % USER_SITE),
190 self.install_usersite = USER_SITE
/external/python/cpython2/Lib/
H A Dsite.py75 USER_SITE = None variable
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 ar
[all...]

Completed in 192 milliseconds