Home
last modified time | relevance | path

Searched refs:ENABLE_USER_SITE (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/
Dsite.py70 ENABLE_USER_SITE = None variable
268 if ENABLE_USER_SITE and os.path.isdir(user_site):
515 global ENABLE_USER_SITE
519 if ENABLE_USER_SITE is None:
520 ENABLE_USER_SITE = check_enableusersite()
531 if ENABLE_USER_SITE:
566 print "ENABLE_USER_SITE: %r" % ENABLE_USER_SITE
577 if ENABLE_USER_SITE:
579 elif ENABLE_USER_SITE is False:
581 elif ENABLE_USER_SITE is None:
/external/python/cpython2/Doc/library/
Dsite.rst96 :data:`ENABLE_USER_SITE` is true. This file is intended to be created in the
112 .. data:: ENABLE_USER_SITE
196 :data:`USER_SITE`, and finally the value of :data:`ENABLE_USER_SITE`.
/external/python/cpython2/Lib/test/
Dtest_site.py27 if site.ENABLE_USER_SITE and not os.path.isdir(site.USER_SITE):
169 @unittest.skipUnless(site.ENABLE_USER_SITE, "requires access to PEP 370 "