summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/subprocess.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/asyncio/subprocess.py')
-rw-r--r--Lib/asyncio/subprocess.py16
1 files changed, 13 insertions, 3 deletions
diff --git a/Lib/asyncio/subprocess.py b/Lib/asyncio/subprocess.py
index a8ad03c..a028339 100644
--- a/Lib/asyncio/subprocess.py
+++ b/Lib/asyncio/subprocess.py
@@ -60,7 +60,9 @@ class SubprocessStreamProtocol(streams.FlowControlMixin,
protocol=self,
reader=None,
loop=self._loop)
- self.waiter.set_result(None)
+
+ if not self.waiter.cancelled():
+ self.waiter.set_result(None)
def pipe_data_received(self, fd, data):
if fd == 1:
@@ -216,7 +218,11 @@ def create_subprocess_shell(cmd, stdin=None, stdout=None, stderr=None,
protocol_factory,
cmd, stdin=stdin, stdout=stdout,
stderr=stderr, **kwds)
- yield from protocol.waiter
+ try:
+ yield from protocol.waiter
+ except:
+ transport._kill_wait()
+ raise
return Process(transport, protocol, loop)
@coroutine
@@ -232,5 +238,9 @@ def create_subprocess_exec(program, *args, stdin=None, stdout=None,
program, *args,
stdin=stdin, stdout=stdout,
stderr=stderr, **kwds)
- yield from protocol.waiter
+ try:
+ yield from protocol.waiter
+ except:
+ transport._kill_wait()
+ raise
return Process(transport, protocol, loop)