commit | c84d167733efd33b54818b1f334c579cf7c8e548 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@gmail.com> | Thu Jan 29 02:15:35 2015 +0100 |
committer | Victor Stinner <victor.stinner@gmail.com> | Thu Jan 29 02:15:35 2015 +0100 |
tree | 6de92fb0c56faffece068c1488fc401a570d8190 | |
parent | bd4976bbd3c8cdfba974c1a66970a1f956c08f53 [diff] | |
parent | 7b5a900e88a046b01eebafdc98ee23d531c101d3 [diff] |
Merge 3.4 (asyncio)
diff --git a/Lib/asyncio/base_subprocess.py b/Lib/asyncio/base_subprocess.py index f5e7dfe..81c6f1a 100644 --- a/Lib/asyncio/base_subprocess.py +++ b/Lib/asyncio/base_subprocess.py
@@ -117,12 +117,15 @@ 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: