~ubuntu-branches/ubuntu/wily/bandit/wily-proposed

« back to all changes in this revision

Viewing changes to examples/os-exec.py

  • Committer: Package Import Robot
  • Author(s): Dave Walker (Daviey)
  • Date: 2015-07-22 09:01:39 UTC
  • Revision ID: package-import@ubuntu.com-20150722090139-fl0nluy0x8m9ctx4
Tags: upstream-0.12.0
ImportĀ upstreamĀ versionĀ 0.12.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import os
 
2
 
 
3
os.execl(path, arg0, arg1)
 
4
os.execle(path, arg0, arg1, env)
 
5
os.execlp(file, arg0, arg1)
 
6
os.execlpe(file, arg0, arg1, env)
 
7
os.execv(path, args)
 
8
os.execve(path, args, env)
 
9
os.execvp(file, args)
 
10
os.execvpe(file, args, env)
 
11