Lines Matching refs:stdout
140 pop = Popen(cmd, stdout=PIPE, stderr=STDOUT, shell=True)
141 (stdout, _) = pop.communicate() # wait until finished
143 sys.exit(stdout)
144 return stdout
150 stdout = execute("git status --porcelain")
151 for line in stdout:
159 stdout = execute("git rev-parse HEAD")
160 return stdout.strip('\n')
172 stdout = execute("git ls-files")
173 if len(stdout) > 0 and stdout[-1] == "\n":
174 stdout = stdout[:-1]
176 for gitfile in stdout.rsplit("\n"):