/third_party/python/ |
H A D | setup.py | 278 tzpaths = base_tzpath.split(os.pathsep) 745 pathsep = (";" if sys.platform == "msys" else ":") 746 for d in line.strip().split("=")[1].split(pathsep):
|
/third_party/python/Lib/ |
H A D | shutil.py | 1485 path = path.split(os.fsencode(os.pathsep)) 1488 path = path.split(os.pathsep) 1500 pathext = [ext for ext in pathext_source.split(os.pathsep) if ext]
|
H A D | os.py | 12 - os.pathsep is the component separator used in $PATH etc 36 __all__ = ["altsep", "curdir", "pardir", "sep", "pathsep", "linesep", 96 from os.path import (curdir, pardir, sep, pathsep, defpath, extsep, altsep, namespace 660 return path_list.split(pathsep)
|
H A D | webbrowser.py | 586 userchoices = os.environ["BROWSER"].split(os.pathsep)
|
H A D | posixpath.py | 20 pathsep = ':' variable 36 "curdir","pardir","sep","pathsep","defpath","altsep","extsep",
|
H A D | ntpath.py | 15 pathsep = ';' variable 31 "curdir","pardir","sep","pathsep","defpath","altsep",
|
H A D | modulefinder.py | 623 addpath = addpath + a.split(os.pathsep)
|
H A D | trace.py | 654 '(multiple directories can be joined by os.pathsep).') 677 for i in opts.ignore_dir for s in i.split(os.pathsep)]
|
H A D | zipfile.py | 1697 def _sanitize_windows_name(cls, arcname, pathsep): 1706 arcname = (x.rstrip('.') for x in arcname.split(pathsep)) 1708 arcname = pathsep.join(x for x in arcname if x)
|
/third_party/openssl/engines/ |
H A D | e_loader_attic.c | 1432 const char *pathsep = ossl_ends_with_dirsep(ctx->uri) ? "" : "/"; in file_name_to_uri() local 1433 long calculated_length = strlen(ctx->uri) + strlen(pathsep) in file_name_to_uri() 1443 OPENSSL_strlcat(*data, pathsep, calculated_length); in file_name_to_uri()
|
/third_party/python/Lib/test/ |
H A D | test_venv.py | 536 bad_itempath = self.env_dir + os.pathsep 592 pythonpath = os.pathsep.join(
|
H A D | test_pkgutil.py | 237 ('os.path:pathsep', os.path.pathsep), 268 ('os.pth:pathsep', ImportError),
|
H A D | test_site.py | 645 env['PATH'] = '{}{}{}'.format(exe_prefix, os.pathsep, os.getenv('PATH'))
|
H A D | test_cmd_line.py | 365 path = path1 + os.pathsep + path2
|
H A D | test_posix.py | 1926 path = os.pathsep.join((temp_dir, os.environ['PATH']))
|
/kernel/linux/linux-5.10/Documentation/sphinx/ |
H A D | kfigure.py | 92 for folder in envpath.split(os.pathsep):
|
/kernel/linux/linux-6.6/Documentation/sphinx/ |
H A D | kfigure.py | 84 for folder in envpath.split(os.pathsep):
|
/third_party/node/deps/v8/tools/dev/ |
H A D | gm.py | 124 for path in os.environ["PATH"].split(os.pathsep):
|
/third_party/python/Lib/venv/ |
H A D | __init__.py | 119 if os.pathsep in os.fspath(env_dir): 121 f'it contains the PATH separator {os.pathsep}.')
|
/third_party/node/deps/v8/tools/release/ |
H A D | common_includes.py | 66 new_path = path_to_depot_tools + os.pathsep + os.environ.get('PATH')
|
/third_party/python/Tools/wasm/ |
H A D | wasm_build.py | 517 env[key] = os.pathsep.join(os.fspath(p) for p in new_path)
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | msvs_emulation.py | 1143 setting = os.path.dirname(sys.executable) + os.pathsep + setting
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | msvs_emulation.py | 1134 setting = os.path.dirname(sys.executable) + os.pathsep + setting
|
/third_party/python/Lib/test/test_zoneinfo/ |
H A D | test_zoneinfo.py | 1556 (f"/a/b/c{os.pathsep}/d/e/f", ["/a/b/c", "/d/e/f"]), 1590 path_var = os.pathsep.join(input_paths)
|
/third_party/python/Lib/lib2to3/tests/ |
H A D | test_fixers.py | 3836 return os.path.pathsep.join(path.split("/"))
|