Skip to content

Commit a8e69fc

Browse files
[3.13] gh-126896: Fix docs about asyncio.start_server() (GH-126897) (GH-126934)
gh-126896: Fix docs about `asyncio.start_server()` (GH-126897) (cherry picked from commit 0c5c809) Co-authored-by: beavailable <[email protected]>
1 parent 9dbce9f commit a8e69fc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Doc/library/asyncio-stream.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ and work with streams:
9292
family=socket.AF_UNSPEC, \
9393
flags=socket.AI_PASSIVE, sock=None, \
9494
backlog=100, ssl=None, reuse_address=None, \
95-
reuse_port=None, ssl_handshake_timeout=None, \
95+
reuse_port=None, keep_alive=None, \
96+
ssl_handshake_timeout=None, \
9697
ssl_shutdown_timeout=None, start_serving=True)
9798
9899
Start a socket server.
@@ -128,6 +129,9 @@ and work with streams:
128129
.. versionchanged:: 3.11
129130
Added the *ssl_shutdown_timeout* parameter.
130131

132+
.. versionchanged:: 3.13
133+
Added the *keep_alive* parameter.
134+
131135

132136
.. rubric:: Unix Sockets
133137

0 commit comments

Comments
 (0)