Merge 3.4 (asyncio)

This commit is contained in:
Victor Stinner 2015-01-29 02:15:35 +01:00
commit c84d167733
1 changed files with 3 additions and 0 deletions

View File

@ -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: