@@ -605,10 +605,10 @@ def subprocess_shell(self, protocol_factory, cmd, *, stdin=subprocess.PIPE,
605605 return transport , protocol
606606
607607 @tasks .coroutine
608- def subprocess_exec (self , protocol_factory , program , * args , stdin = subprocess . PIPE ,
609- stdout = subprocess .PIPE , stderr = subprocess .PIPE ,
610- universal_newlines = False , shell = False , bufsize = 0 ,
611- ** kwargs ):
608+ def subprocess_exec (self , protocol_factory , program , * args ,
609+ stdin = subprocess .PIPE , stdout = subprocess .PIPE ,
610+ stderr = subprocess . PIPE , universal_newlines = False ,
611+ shell = False , bufsize = 0 , ** kwargs ):
612612 if universal_newlines :
613613 raise ValueError ("universal_newlines must be False" )
614614 if shell :
@@ -623,7 +623,8 @@ def subprocess_exec(self, protocol_factory, program, *args, stdin=subprocess.PIP
623623 % type (arg ).__name__ )
624624 protocol = protocol_factory ()
625625 transport = yield from self ._make_subprocess_transport (
626- protocol , popen_args , False , stdin , stdout , stderr , bufsize , ** kwargs )
626+ protocol , popen_args , False , stdin , stdout , stderr ,
627+ bufsize , ** kwargs )
627628 return transport , protocol
628629
629630 def set_exception_handler (self , handler ):
0 commit comments