Lines Matching refs:subprocess
30 import subprocess
119 proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,
120 stderr=subprocess.STDOUT, env=env_vars)
153 raise subprocess.CalledProcessError(proc.returncode, cmd, output)
182 subprocess.check_call(cmd, stderr=subprocess.STDOUT,
189 except subprocess.CalledProcessError as err:
352 _y, _x = subprocess.check_output(['stty', 'size']).decode().split()
357 except subprocess.CalledProcessError:
609 git_paths = subprocess.check_output(
615 modified_wo_commit = subprocess.check_output(
622 commit_modified_files = subprocess.check_output(
627 except (OSError, subprocess.CalledProcessError) as err: