Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/
Dsite.py82 ENABLE_USER_SITE = None variable
315 if ENABLE_USER_SITE and os.path.isdir(user_site):
466 global PREFIXES, ENABLE_USER_SITE
512 ENABLE_USER_SITE = False
563 global ENABLE_USER_SITE
573 if ENABLE_USER_SITE is None:
574 ENABLE_USER_SITE = check_enableusersite()
583 if ENABLE_USER_SITE:
618 print("ENABLE_USER_SITE: %r" % ENABLE_USER_SITE)
629 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/cpython3/Doc/library/
Dsite.rst128 :data:`ENABLE_USER_SITE` is true. This file is intended to be created in the
165 .. data:: ENABLE_USER_SITE
235 site-packages was added to ``sys.path`` :data:`ENABLE_USER_SITE` should be
259 :data:`USER_SITE`, and finally the value of :data:`ENABLE_USER_SITE`.
/external/tensorflow/tensorflow/
Dapi_template.__init__.py119 if _site.ENABLE_USER_SITE and _site.USER_SITE is not None:
/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/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/cpython3/Lib/test/
Dtest_site.py44 if site.ENABLE_USER_SITE and not os.path.isdir(site.USER_SITE):
198 @unittest.skipUnless(site.ENABLE_USER_SITE, "requires access to PEP 370 "
/external/python/setuptools/
DCHANGES.rst2255 expecting this boolean variable should use ``site.ENABLE_USER_SITE``