Searched refs:USER_BASE (Results 1 – 23 of 23) sorted by relevance
/external/python/cpython2/Lib/ |
D | site.py | 76 USER_BASE = None variable 231 global USER_BASE 232 if USER_BASE is not None: 233 return USER_BASE 235 USER_BASE = get_config_var('userbase') 236 return USER_BASE 568 print "USER_BASE: %r (%s)" % (USER_BASE, 569 "exists" if os.path.isdir(USER_BASE) else "doesn't exist") 577 buffer.append(USER_BASE)
|
/external/python/cpython2/Lib/test/ |
D | test_site.py | 65 self.old_base = site.USER_BASE 73 site.USER_BASE = self.old_base 220 site.USER_BASE = None 224 self.assertEqual(site.USER_BASE, user_base) 227 site.USER_BASE = None 238 site.USER_BASE = None 243 self.assertTrue(user_site.startswith(site.USER_BASE), user_site)
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_install.py | 71 self.old_user_base = site.USER_BASE 76 site.USER_BASE = self.user_base 78 install_module.USER_BASE = self.user_base 87 site.USER_BASE = self.old_user_base 89 install_module.USER_BASE = self.old_user_base
|
D | test_build_ext.py | 35 self.old_user_base = site.USER_BASE 36 site.USER_BASE = self.mkdtemp() 38 build_ext.USER_BASE = site.USER_BASE 53 site.USER_BASE = self.old_user_base 55 build_ext.USER_BASE = self.old_user_base 140 lib = os.path.join(site.USER_BASE, 'lib') 141 incl = os.path.join(site.USER_BASE, 'include')
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_install.py | 73 self.old_user_base = site.USER_BASE 78 site.USER_BASE = self.user_base 80 install_module.USER_BASE = self.user_base 89 site.USER_BASE = self.old_user_base 91 install_module.USER_BASE = self.old_user_base
|
D | test_build_ext.py | 33 self.old_user_base = site.USER_BASE 34 site.USER_BASE = self.mkdtemp() 36 build_ext.USER_BASE = site.USER_BASE 124 lib = os.path.join(site.USER_BASE, 'lib') 125 incl = os.path.join(site.USER_BASE, 'include')
|
/external/python/cpython3/Lib/ |
D | site.py | 87 USER_BASE = None variable 284 global USER_BASE 285 if USER_BASE is None: 286 USER_BASE = _getuserbase() 287 return USER_BASE 620 buffer.append(USER_BASE)
|
/external/python/cpython3/Lib/test/ |
D | test_site.py | 64 self.old_base = site.USER_BASE 73 site.USER_BASE = self.old_base 241 site.USER_BASE = None 245 self.assertEqual(site.USER_BASE, user_base) 248 site.USER_BASE = None 259 site.USER_BASE = None 264 self.assertTrue(user_site.startswith(site.USER_BASE), user_site) 265 self.assertEqual(site.USER_BASE, site.getuserbase()) 289 site.USER_BASE = None
|
/external/python/cpython2/Doc/library/ |
D | site.rst | 137 .. data:: USER_BASE 167 Return the path of the user base directory, :data:`USER_BASE`. If it is not 178 it, respecting :envvar:`PYTHONNOUSERSITE` and :data:`USER_BASE`. 195 :data:`USER_BASE` and whether the directory exists, then the same thing for
|
/external/python/cpython3/Doc/library/ |
D | site.rst | 173 .. data:: USER_BASE 210 Return the path of the user base directory, :data:`USER_BASE`. If it is not 221 it, respecting :envvar:`PYTHONNOUSERSITE` and :data:`USER_BASE`. 238 :data:`USER_BASE` and whether the directory exists, then the same thing for
|
/external/python/cpython2/Lib/distutils/command/ |
D | build_ext.py | 13 from site import USER_BASE, USER_SITE 270 user_include = os.path.join(USER_BASE, "include") 271 user_lib = os.path.join(USER_BASE, "lib")
|
D | install.py | 21 from site import USER_BASE 189 self.install_userbase = USER_BASE
|
/external/python/cpython3/Lib/distutils/command/ |
D | build_ext.py | 20 from site import USER_BASE 264 user_include = os.path.join(USER_BASE, "include") 265 user_lib = os.path.join(USER_BASE, "lib")
|
D | install.py | 18 from site import USER_BASE 172 self.install_userbase = USER_BASE
|
/external/python/cpython2/Doc/using/ |
D | cmdline.rst | 605 Defines the :data:`user base directory <site.USER_BASE>`, which is used to
|
/external/python/setuptools/setuptools/command/ |
D | easy_install.py | 193 self.install_userbase = site.USER_BASE
|
/external/python/cpython3/Doc/distutils/ |
D | setupscript.rst | 539 ``site.USER_BASE`` for user installations). Distutils allows *directory* to be
|
/external/python/cpython3/Doc/using/ |
D | cmdline.rst | 639 Defines the :data:`user base directory <site.USER_BASE>`, which is used to
|
/external/python/setuptools/docs/ |
D | easy_install.txt | 999 for the ``site.USER_BASE`` variable. This mode of installation can be turned on by 1008 variable, which updates the value of ``site.USER_BASE``. To isolate packages to a specific
|
/external/python/cpython3/Doc/install/ |
D | index.rst | 351 Files will be installed into subdirectories of :data:`site.USER_BASE` (written
|
/external/python/cpython2/Doc/install/ |
D | index.rst | 348 Files will be installed into subdirectories of :data:`site.USER_BASE` (written
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.7.rst | 1498 :func:`~site.getuserbase` returns the value of the :envvar:`USER_BASE`
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.7.rst | 1483 :func:`~site.getuserbase` returns the value of the :envvar:`USER_BASE`
|