Home
last modified time | relevance | path

Searched refs:USER_BASE (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Lib/distutils/tests/
Dtest_install.py82 self.old_user_base = site.USER_BASE
87 site.USER_BASE = self.user_base
89 install_module.USER_BASE = self.user_base
98 site.USER_BASE = self.old_user_base
100 install_module.USER_BASE = self.old_user_base
Dtest_build_ext.py34 self.old_user_base = site.USER_BASE
35 site.USER_BASE = self.mkdtemp()
37 build_ext.USER_BASE = site.USER_BASE
49 site.USER_BASE = self.old_user_base
51 build_ext.USER_BASE = self.old_user_base
153 lib = os.path.join(site.USER_BASE, 'lib')
154 incl = os.path.join(site.USER_BASE, 'include')
/third_party/python/Lib/
Dsite.py88 USER_BASE = None variable
308 global USER_BASE
309 if USER_BASE is None:
310 USER_BASE = _getuserbase()
311 return USER_BASE
654 buffer.append(USER_BASE)
/third_party/python/Lib/test/
Dtest_site.py69 self.old_base = site.USER_BASE
78 site.USER_BASE = self.old_base
254 site.USER_BASE = None
258 self.assertEqual(site.USER_BASE, user_base)
261 site.USER_BASE = None
273 site.USER_BASE = None
278 self.assertTrue(user_site.startswith(site.USER_BASE), user_site)
279 self.assertEqual(site.USER_BASE, site.getuserbase())
311 site.USER_BASE = None
/third_party/python/Lib/distutils/command/
Dbuild_ext.py20 from site import USER_BASE
264 user_include = os.path.join(USER_BASE, "include")
265 user_lib = os.path.join(USER_BASE, "lib")
Dinstall.py20 from site import USER_BASE
190 self.install_userbase = USER_BASE
/third_party/python/Doc/library/
Dsite.rst186 .. data:: USER_BASE
223 Return the path of the user base directory, :data:`USER_BASE`. If it is not
234 it, respecting :data:`USER_BASE`. To determine if the user-specific
258 :data:`USER_BASE` and whether the directory exists, then the same thing for
/third_party/python/Doc/distutils/
Dsetupscript.rst541 ``site.USER_BASE`` for user installations). Distutils allows *directory* to be
/third_party/python/Doc/using/
Dcmdline.rst722 Defines the :data:`user base directory <site.USER_BASE>`, which is used to
/third_party/python/Doc/install/
Dindex.rst312 Files will be installed into subdirectories of :data:`site.USER_BASE` (written
/third_party/python/Doc/whatsnew/
D2.7.rst1498 :func:`~site.getuserbase` returns the value of the :envvar:`USER_BASE`
/third_party/python/patches/
Dcpython_mingw_v3.10.2.patch1538 USER_BASE = None