Home | History | Annotate | Download | only in test

Lines Matching defs:Subprocess

47   import subprocess
207 class Subprocess:
218 env: Dictionary with environment to pass to the subprocess.
232 # The subprocess module is the preferrable way of running programs
241 stderr = subprocess.STDOUT
243 stderr = subprocess.PIPE
245 p = subprocess.Popen(command,
246 stdout=subprocess.PIPE, stderr=stderr,
265 # current 'os.environ' for compatibility with the subprocess.Popen
290 # subprocess.Popen.returncode.
315 # TODO(vladl@google.com): Move this into Subprocess when we implement