D | os.py | 321 env = args[-1] 322 execve(file, args[:-1], env) 337 env = args[-1] 338 execvpe(file, args[:-1], env) 348 def execvpe(file, args, env): argument 355 _execvpe(file, args, env) 359 def _execvpe(file, args, env=None): argument 360 if env is not None: 362 argrest = (args, env) 366 env = environ [all …]
|