Searched refs:get_exec_path (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Lib/ |
D | os.py | 600 path_list = get_exec_path(env) 619 def get_exec_path(env=None): function
|
D | subprocess.py | 1749 for dir in os.get_exec_path(env))
|
/external/python/cpython3/Lib/test/ |
D | test_os.py | 903 self.assertSequenceEqual(test_path, os.get_exec_path()) 904 self.assertSequenceEqual(test_path, os.get_exec_path(env=None)) 909 self.assertSequenceEqual(defpath_list, os.get_exec_path({})) 911 self.assertSequenceEqual(('',), os.get_exec_path({'PATH':''})) 913 self.assertSequenceEqual(test_path, os.get_exec_path(test_env)) 925 self.assertRaises(ValueError, os.get_exec_path, mixed_env) 928 self.assertSequenceEqual(os.get_exec_path({b'PATH': b'abc'}), 930 self.assertSequenceEqual(os.get_exec_path({b'PATH': 'abc'}), 932 self.assertSequenceEqual(os.get_exec_path({'PATH': b'abc'}),
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 248 .. function:: get_exec_path(env=None)
|
/external/python/cpython3/Misc/ |
D | HISTORY | 13395 - 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
|