# HG changeset patch # User Jeff Hammel # Date 1391127746 28800 # Node ID bd30deecdf4a821fef8a1841d0bceff2b05ceba7 # Parent 330e3435a7d7f2be14c23f71266c92d0c9460816 STUB: python/multiproc.py diff -r 330e3435a7d7 -r bd30deecdf4a python/multiproc.py --- a/python/multiproc.py Thu Jan 30 14:20:25 2014 -0800 +++ b/python/multiproc.py Thu Jan 30 16:22:26 2014 -0800 @@ -14,6 +14,9 @@ class Process(subprocess.Popen): """why would you name a subprocess object Popen?""" + defaults = {'buffsize': 'line buffered' + } + def __init__(self, *args, **kwargs): self.output = tempfile.SpooledTemporaryFile() subprocess.Popen.__init__(self, *args, **kwargs)