Home
last modified time | relevance | path

Searched refs:defpath (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Modules/
Dgetpath.c1345 wchar_t *defpath = calculate->pythonpath_macro; in calculate_module_search_path() local
1348 wchar_t *delim = wcschr(defpath, DELIM); in calculate_module_search_path()
1350 if (!_Py_isabs(defpath)) { in calculate_module_search_path()
1356 bufsz += delim - defpath + 1; in calculate_module_search_path()
1359 bufsz += wcslen(defpath) + 1; in calculate_module_search_path()
1362 defpath = delim + 1; in calculate_module_search_path()
1388 defpath = calculate->pythonpath_macro; in calculate_module_search_path()
1390 wchar_t *delim = wcschr(defpath, DELIM); in calculate_module_search_path()
1392 if (!_Py_isabs(defpath)) { in calculate_module_search_path()
1395 defpath[0] != (delim ? DELIM : L'\0')) in calculate_module_search_path()
[all …]
/third_party/python/Lib/distutils/
Dspawn.py115 path = os.defpath
/third_party/python/Lib/
Dos.py96 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep,
659 path_list = defpath
Duuid.py363 path_dirs = os.environ.get('PATH', os.defpath).split(os.pathsep)
Dposixpath.py21 defpath = '/bin:/usr/bin' variable
Dntpath.py17 defpath = '.;C:\\bin' variable
Dshutil.py1415 path = os.defpath
/third_party/python/Misc/NEWS.d/
D3.8.0a4.rst30 directory from :data:`posixpath.defpath`. On Unix, :func:`shutil.which` and
354 ``os.confstr("CS_PATH")`` if available instead of :data:`os.defpath`, if the
356 ``os.confstr("CS_PATH")`` nor :data:`os.defpath` if the ``PATH`` environment
D3.8.0a1.rst3346 ``distutils.spawn.find_executable()`` now falls back on :data:`os.defpath`
/third_party/python/Lib/test/
Dtest_os.py1037 defpath_list = os.defpath.split(os.pathsep)
1925 def _execvpe_mockup(defpath=None): argument
1946 orig_defpath = os.defpath
1949 if defpath is not None:
1950 os.defpath = defpath
1955 os.defpath = orig_defpath
2005 with _execvpe_mockup(defpath=program_path) as calls:
/third_party/python/Doc/library/
Dshutil.rst416 returning either the "PATH" value or a fallback of :attr:`os.defpath`.
Dos.rst4806 .. data:: defpath
/third_party/python/Misc/
DHISTORY22138 pathsep, curdir, pardir and defpath are now defined in the platform