Home | History | Annotate | Download | only in tools

Lines Matching defs:popen

117     def popen(self, *args, **kwargs):
118 """Wrapper for subprocess.Popen().
121 *args: to be passed to subprocess.Popen()
122 **kwargs: to be passed to subprocess.Popen()
124 The output of subprocess.Popen()
126 OSError or subprocess.CalledProcessError: raised by Popen.
130 return subprocess.Popen(*args, **kwargs)
213 *args: to be passed to subprocess.Popen()
214 **kwargs: to be passed to subprocess.Popen()
221 proc = subprocess.Popen(*args, stdout=subprocess.PIPE, **kwargs)