8000 bpo-46805: Add low level UDP socket functions to asyncio by agronholm · Pull Request #31455 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-46805: Add low level UDP socket functions to asyncio #31455

8000 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

Merged
merged 14 commits into from
Mar 13, 2022
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Fixed the return type description for sock_recvfrom_into()
  • Loading branch information
agronholm committed Mar 12, 2022
commit 059f645e2dc4618280dba97d17f8acfa7b88cd61
2 changes: 1 addition & 1 deletion Doc/library/asyncio-eventloop.rst
828F
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ convenient.
Asynchronous version of
:meth:`socket.recvfrom_into() <socket.socket.recvfrom_into>`.

Return a tuple of (received data, remote address).
Return a tuple of (number of bytes received, remote address).

*sock* must be a non-blocking socket.

Expand Down
0