Searched refs:env_list (Results 1 - 5 of 5) sorted by relevance
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | MSVSUserFile.py | 96 env_list = [f'{key}="{val}"' for (key, val) in environment.items()] 97 environment = " ".join(env_list)
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | MSVSUserFile.py | 96 env_list = [f'{key}="{val}"' for (key, val) in environment.items()] 97 environment = " ".join(env_list)
|
/third_party/python/Modules/ |
H A D | _posixsubprocess.c | 832 PyObject *env_list, *preexec_fn; in subprocess_fork_exec() local 860 &cwd_obj, &env_list, in subprocess_fork_exec() 934 if (env_list != Py_None) { in subprocess_fork_exec() 935 envp = _PySequence_BytesToCharpArray(env_list); in subprocess_fork_exec()
|
/third_party/python/Lib/ |
H A D | subprocess.py | 1865 env_list = [] 1870 env_list.append(k + b'=' + os.fsencode(v)) 1872 env_list = None # Use execv instead of execve. 1886 cwd, env_list,
|
/third_party/python/Lib/test/ |
H A D | test_subprocess.py | 3152 for args, exe_list, cwd, env_list in ( 3161 True, (), cwd, env_list,
|
Completed in 10 milliseconds