diff options
author | Emmanuel Arias <emmanuelarias30@gmail.com> | 2019-02-22 17:34:41 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-02-22 17:34:41 (GMT) |
commit | df5cdc11123a35065bbf1636251447d0bfe789a5 (patch) | |
tree | c088e4a62c94025382f22abf93734088292e13d5 /Doc | |
parent | a40681dd5db8deaf05a635eecb91498dac882aa4 (diff) | |
download | cpython-df5cdc11123a35065bbf1636251447d0bfe789a5.zip cpython-df5cdc11123a35065bbf1636251447d0bfe789a5.tar.gz cpython-df5cdc11123a35065bbf1636251447d0bfe789a5.tar.bz2 |
bpo-36074: Result of `asyncio.Server.sockets` after `Server.close()` after is not clear (GH-11987)
[bpo-36074](https://bugs.python.org/issue36074): It becomes clear on that the None is still return for server closed.
https://bugs.python.org/issue36074
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/asyncio-eventloop.rst | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/library/asyncio-eventloop.rst b/Doc/library/asyncio-eventloop.rst index acf9477..8d157fd 100644 --- a/Doc/library/asyncio-eventloop.rst +++ b/Doc/library/asyncio-eventloop.rst @@ -1394,8 +1394,7 @@ Do not instantiate the class directly. .. attribute:: sockets - List of :class:`socket.socket` objects the server is listening on, - or ``None`` if the server is closed. + List of :class:`socket.socket` objects the server is listening on. .. versionchanged:: 3.7 Prior to Python 3.7 ``Server.sockets`` used to return an |