Home
last modified time | relevance | path

Searched refs:get_exec_path (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/
Dos.py600 path_list = get_exec_path(env)
619 def get_exec_path(env=None): function
Dsubprocess.py1772 for dir in os.get_exec_path(env))
/third_party/python/Lib/test/
Dtest_os.py1045 self.assertSequenceEqual(test_path, os.get_exec_path())
1046 self.assertSequenceEqual(test_path, os.get_exec_path(env=None))
1051 self.assertSequenceEqual(defpath_list, os.get_exec_path({}))
1053 self.assertSequenceEqual(('',), os.get_exec_path({'PATH':''}))
1055 self.assertSequenceEqual(test_path, os.get_exec_path(test_env))
1067 self.assertRaises(ValueError, os.get_exec_path, mixed_env)
1070 self.assertSequenceEqual(os.get_exec_path({b'PATH': b'abc'}),
1072 self.assertSequenceEqual(os.get_exec_path({b'PATH': 'abc'}),
1074 self.assertSequenceEqual(os.get_exec_path({'PATH': b'abc'}),
/third_party/nghttp2/src/
Dutil.h576 char *get_exec_path(int argc, char **const argv, const char *cwd);
Dutil.cc781 char *get_exec_path(int argc, char **const argv, const char *cwd) { in get_exec_path() function
Dshrpx.cc566 util::get_exec_path(suconfig.argc, suconfig.argv, suconfig.cwd); in exec_binary()
/third_party/python/Doc/library/
Dos.rst317 .. function:: get_exec_path(env=None)
/third_party/python/Misc/
DHISTORY13395 - Issue #8513: os.get_exec_path() supports b'PATH' key and bytes value.
14150 - The os.get_exec_path() function to return the list of directories that will be