Lines Matching refs:stdout
182 pop = Popen(cmd, stdout=PIPE, stderr=STDOUT, shell=True)
183 (stdout, _) = pop.communicate() # wait until finished
185 sys.exit(stdout)
186 return stdout
199 stdout = execute("git status --porcelain")
200 for line in stdout:
208 stdout = execute("git rev-parse HEAD")
209 return stdout.strip('\n')
222 stdout = execute("git ls-files")
223 if len(stdout) > 0 and stdout[-1] == "\n":
224 stdout = stdout[:-1]
226 for gitfile in stdout.rsplit("\n"):