Lines Matching full:executable
33 class Popen(args, bufsize=0, executable=None,
44 string, but can be explicitly set by using the executable argument.
650 def __init__(self, args, bufsize=0, executable=None,
706 self._execute_child(args, executable, preexec_fn, close_fds,
898 def _execute_child(self, args, executable, preexec_fn, close_fds,
941 hp, ht, pid, tid = _subprocess.CreateProcess(executable, args,
1173 def _execute_child(self, args, executable, preexec_fn, close_fds,
1188 if executable:
1189 args[0] = executable
1191 if executable is None:
1192 executable = args[0]
1263 os.execvp(executable, args)
1265 os.execvpe(executable, args, env)