Oops, the default bufsize is 0 anyways.

This commit is contained in:
Joe Vennix 2014-01-05 18:57:56 -06:00
parent b64df51fa0
commit 96e97d4768
1 changed files with 0 additions and 1 deletions

View File

@ -180,7 +180,6 @@ class STDProcessBuffer(threading.Thread):
class STDProcess(subprocess.Popen):
def __init__(self, *args, **kwargs):
kwargs['bufsize'] = 0 # disable buffering on stdout/err
subprocess.Popen.__init__(self, *args, **kwargs)
def start(self):