From 9311e980f4d5f91f255a30ecff208cc523613954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Me=C3=9Fmer?= Date: Tue, 9 May 2017 01:24:02 +0200 Subject: [PATCH] Fix type stubs in subprocess.pyi (#1253) --- stdlib/3.4/asyncio/subprocess.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3.4/asyncio/subprocess.pyi b/stdlib/3.4/asyncio/subprocess.pyi index bd7fd941f..a2592894f 100644 --- a/stdlib/3.4/asyncio/subprocess.pyi +++ b/stdlib/3.4/asyncio/subprocess.pyi @@ -19,7 +19,7 @@ class SubprocessStreamProtocol(streams.FlowControlMixin, def __init__(self, limit: int, loop: events.AbstractEventLoop) -> None: ... def connection_made(self, transport: transports.BaseTransport) -> None: ... def pipe_data_received(self, fd: int, data: AnyStr) -> None: ... - def pipe_connection_lost(self, fd: int, exc: Exception): ... + def pipe_connection_lost(self, fd: int, exc: Exception) -> None: ... def process_exited(self) -> None: ...