Skip to content

Commit

Permalink
[3.13] gh-126896: Fix docs about asyncio.start_server() (GH-126897) (
Browse files Browse the repository at this point in the history
…GH-126934)

gh-126896: Fix docs about `asyncio.start_server()` (GH-126897)
(cherry picked from commit 0c5c809)

Co-authored-by: beavailable <beavailable@proton.me>
  • Loading branch information
miss-islington and beavailable authored Nov 24, 2024
1 parent 9dbce9f commit a8e69fc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Doc/library/asyncio-stream.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ and work with streams:
family=socket.AF_UNSPEC, \
flags=socket.AI_PASSIVE, sock=None, \
backlog=100, ssl=None, reuse_address=None, \
reuse_port=None, ssl_handshake_timeout=None, \
reuse_port=None, keep_alive=None, \
ssl_handshake_timeout=None, \
ssl_shutdown_timeout=None, start_serving=True)
Start a socket server.
Expand Down Expand Up @@ -128,6 +129,9 @@ and work with streams:
.. versionchanged:: 3.11
Added the *ssl_shutdown_timeout* parameter.

.. versionchanged:: 3.13
Added the *keep_alive* parameter.


.. rubric:: Unix Sockets

Expand Down

0 comments on commit a8e69fc

Please sign in to comment.