From f91163d729822e634683057a342b830f669ccafc Mon Sep 17 00:00:00 2001 From: Rob Day Date: Sat, 3 Mar 2018 21:34:02 +0000 Subject: [PATCH] Fix type of loop parameter to start_unix_server (#1939) --- stdlib/3.4/asyncio/streams.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/3.4/asyncio/streams.pyi b/stdlib/3.4/asyncio/streams.pyi index 922552b8c..e46904e11 100644 --- a/stdlib/3.4/asyncio/streams.pyi +++ b/stdlib/3.4/asyncio/streams.pyi @@ -56,7 +56,7 @@ if sys.platform != 'win32': client_connected_cb: _ClientConnectedCallback, path: str = ..., *, - loop: int = ..., + loop: Optional[events.AbstractEventLoop] = ..., limit: int = ..., **kwds: Any) -> Generator[Any, None, events.AbstractServer]: ...