Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0c5c809

Browse filesBrowse files
authored
gh-126896: Fix docs about asyncio.start_server() (#126897)
1 parent 9d6366b commit 0c5c809
Copy full SHA for 0c5c809

File tree

Expand file treeCollapse file tree

1 file changed

+5
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+5
-1
lines changed

‎Doc/library/asyncio-stream.rst

Copy file name to clipboardExpand all lines: Doc/library/asyncio-stream.rst
+5-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.