Home | History | Annotate | Download | only in test

Lines Matching defs:Subprocess

47   import subprocess
196 class Subprocess:
207 env: Dictionary with environment to pass to the subprocess.
221 # The subprocess module is the preferrable way of running programs
230 stderr = subprocess.STDOUT
232 stderr = subprocess.PIPE
234 p = subprocess.Popen(command,
235 stdout=subprocess.PIPE, stderr=stderr,
254 # current 'os.environ' for compatibility with the subprocess.Popen
279 # subprocess.Popen.returncode.
304 # TODO(vladl@google.com): Move this into Subprocess when we implement