From dadbeb9345a1d299b443df17551451405723c970 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Thu, 29 Jan 2015 01:59:57 +0100 Subject: BaseSubprocessTransport._kill_wait() now also call close() close() closes pipes, which is not None yet by _kill_wait(). --- asyncio/base_subprocess.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/asyncio/base_subprocess.py b/asyncio/base_subprocess.py index f5e7dfe..81c6f1a 100644 --- a/asyncio/base_subprocess.py +++ b/asyncio/base_subprocess.py @@ -117,12 +117,15 @@ class BaseSubprocessTransport(transports.SubprocessTransport): proc.stderr.close() if proc.stdin: proc.stdin.close() + try: proc.kill() except ProcessLookupError: pass self._returncode = proc.wait() + self.close() + @coroutine def _post_init(self): try: -- cgit v1.2.1