From 9a01b817f71e308ffbb414891d26365e866fd186 Mon Sep 17 00:00:00 2001 From: Yusuke Miyazaki Date: Wed, 8 Aug 2018 02:03:14 +0900 Subject: [PATCH] Add sockets attribute to asyncio.events.AbstractServer (#2364) --- stdlib/3/asyncio/events.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stdlib/3/asyncio/events.pyi b/stdlib/3/asyncio/events.pyi index 15d9461a4..cc5500bc7 100644 --- a/stdlib/3/asyncio/events.pyi +++ b/stdlib/3/asyncio/events.pyi @@ -34,6 +34,7 @@ class TimerHandle(Handle): def __hash__(self) -> int: ... class AbstractServer: + sockets: Optional[List[socket]] def close(self) -> None: ... @coroutine def wait_closed(self) -> Generator[Any, None, None]: ...