Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Dsite.py81 ENABLE_USER_SITE = None variable
314 if ENABLE_USER_SITE and os.path.isdir(user_site):
456 global PREFIXES, ENABLE_USER_SITE
509 ENABLE_USER_SITE = False
560 global ENABLE_USER_SITE
570 if ENABLE_USER_SITE is None:
571 ENABLE_USER_SITE = check_enableusersite()
580 if ENABLE_USER_SITE:
615 print("ENABLE_USER_SITE: %r" % ENABLE_USER_SITE)
626 if ENABLE_USER_SITE:
[all …]
/external/python/cpython2/Lib/
Dsite.py70 ENABLE_USER_SITE = None variable
272 if ENABLE_USER_SITE and os.path.isdir(user_site):
519 global ENABLE_USER_SITE
523 if ENABLE_USER_SITE is None:
524 ENABLE_USER_SITE = check_enableusersite()
525 if ENABLE_USER_SITE:
537 if ENABLE_USER_SITE:
572 print "ENABLE_USER_SITE: %r" % ENABLE_USER_SITE
583 if ENABLE_USER_SITE:
585 elif ENABLE_USER_SITE is False:
[all …]
/external/python/setuptools/setuptools/tests/
Dcontexts.py74 saved = site.ENABLE_USER_SITE
78 site.ENABLE_USER_SITE = saved
/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.py36 if site.ENABLE_USER_SITE and not os.path.isdir(site.USER_SITE):
186 @unittest.skipUnless(site.ENABLE_USER_SITE, "requires access to PEP 370 "
/external/python/cpython3/Doc/library/
Dsite.rst115 :data:`ENABLE_USER_SITE` is true. This file is intended to be created in the
152 .. data:: ENABLE_USER_SITE
239 :data:`USER_SITE`, and finally the value of :data:`ENABLE_USER_SITE`.
/external/python/cpython3/Lib/test/
Dtest_site.py42 if site.ENABLE_USER_SITE and not os.path.isdir(site.USER_SITE):
199 @unittest.skipUnless(site.ENABLE_USER_SITE, "requires access to PEP 370 "
/external/python/setuptools/setuptools/command/
Deasy_install.py161 if site.ENABLE_USER_SITE:
192 if site.ENABLE_USER_SITE:
265 if site.ENABLE_USER_SITE:
370 if not self.user or not site.ENABLE_USER_SITE:
1439 if site.ENABLE_USER_SITE:
/external/python/setuptools/
DCHANGES.rst2255 expecting this boolean variable should use ``site.ENABLE_USER_SITE``