Searched refs:defpath (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Modules/ |
D | getpath.c | 1345 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/ |
D | spawn.py | 115 path = os.defpath
|
/third_party/python/Lib/ |
D | os.py | 96 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, 659 path_list = defpath
|
D | uuid.py | 363 path_dirs = os.environ.get('PATH', os.defpath).split(os.pathsep)
|
D | posixpath.py | 21 defpath = '/bin:/usr/bin' variable
|
D | ntpath.py | 17 defpath = '.;C:\\bin' variable
|
D | shutil.py | 1415 path = os.defpath
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0a4.rst | 30 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
|
D | 3.8.0a1.rst | 3346 ``distutils.spawn.find_executable()`` now falls back on :data:`os.defpath`
|
/third_party/python/Lib/test/ |
D | test_os.py | 1037 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/ |
D | shutil.rst | 416 returning either the "PATH" value or a fallback of :attr:`os.defpath`.
|
D | os.rst | 4806 .. data:: defpath
|
/third_party/python/Misc/ |
D | HISTORY | 22138 pathsep, curdir, pardir and defpath are now defined in the platform
|