Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Doc/library/asyncio-eventloop.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1884,6 +1884,12 @@ Do not instantiate the :class:`Server` class directly.
Wait until the :meth:`close` method completes and all active
connections have finished.

.. versionchanged:: 3.12
``wait_closed()`` now waits until the server is closed and
all active connections have finished. Previously, it returned
immediately if the server was already closed, even if
connections were still active.

.. attribute:: sockets

List of socket-like objects, ``asyncio.trsock.TransportSocket``, which
Expand Down
Loading