Author: Maciej Fijalkowski <[email protected]>
Branch: 
Changeset: r334:fe2e89c0ae68
Date: 2015-09-07 12:51 +0200
http://bitbucket.org/pypy/benchmarks/changeset/fe2e89c0ae68/

Log:    I don't think we ever want stdout to be share with the parent

diff --git a/benchmarks.py b/benchmarks.py
--- a/benchmarks.py
+++ b/benchmarks.py
@@ -158,7 +158,8 @@
     logging.info('Running %s', ' '.join(args))
     environ = os.environ.copy()
     environ['PYTHONPATH'] = relative('lib/pypy')
-    proc = subprocess.Popen(args, stderr=subprocess.PIPE, env=environ)
+    proc = subprocess.Popen(args, stderr=subprocess.PIPE,
+                            stdout=subprocess.PIPE, env=environ)
     out, err = proc.communicate()
     retcode = proc.poll()
     if retcode != 0:
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to