-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-33736: Improve the documentation of asyncio stream APIs #7326
Conversation
Improve the documentation of `asyncio.open_connection()`, `asyncio.start_server()` and their UNIX socket counterparts.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good @elprans. A few suggestions. Thanks.
@@ -0,0 +1,2 @@ | |||
Improve the documentation of func:`asyncio.open_connection`, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like there is a missing : before func.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed.
:meth:`~AbstractEventLoop.create_server()` except *protocol_factory*; most | ||
common are positional *host* and *port*, with various optional keyword | ||
arguments following. | ||
When specified, the *loop* argument determines which event loop to use, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On line 47, consider adding:
The callback for a connected client, *client_connected_cb*, contains a *client_reader* and *client_writer*. ... The *client_connected_cb* parameter may be a plain callback function or a :ref:`coroutine function <coroutine>`. If the parameter is a coroutine function, it will be automatically converted into a :class:`Task`.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I reworded the whole paragraph for clarity.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice. Thanks @elprans
Doc/library/asyncio-stream.rst
Outdated
|
||
Start a UNIX Domain Socket server, with a callback for each client connected. | ||
|
||
See :func:`start_server` for information about return value and other | ||
details. | ||
The *client_connected_cb* parameter is called with two parameters: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps add a few words for better reader understanding:
The callback for a connected client, *client_connected_cb*, contains a *client_reader* and *client_writer*.
Thanks for the review @willingc! |
GH-7539 is a backport of this pull request to the 3.7 branch. |
Improve the documentation of
asyncio.open_connection()
,asyncio.start_server()
and their UNIX socket counterparts.https://bugs.python.org/issue33736