Fix type of loop parameter to start_unix_server (#1939)

This commit is contained in:
Rob Day
2018-03-03 21:34:02 +00:00
committed by Guido van Rossum
parent ac465ea224
commit f91163d729

View File

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