-
-
Notifications
You must be signed in to change notification settings - Fork 32k
GH-91166: zero copy SelectorSocketTransport transport implementation #31871
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
kumaraditya303
merged 23 commits into
python:main
from
kumaraditya303:asyncio-zero-copy
Dec 24, 2022
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
39b538f
zero copy transport implementation
kumaraditya303 abd2dc3
WIP sendmsg
kumaraditya303 669b661
writelines implementation
kumaraditya303 0692952
use sysconf
kumaraditya303 2725334
fix tests
kumaraditya303 bed096d
skip test if sendmsg does not exists
kumaraditya303 f090e8d
📜🤖 Added by blurb_it.
blurb-it[bot] d6c77cd
fix check on other platforms
kumaraditya303 f2ee404
rename some vars
kumaraditya303 effab03
_HAVE_SENDMSG -> _HAS_SENDMSG
kumaraditya303 e1e4362
fix tests
kumaraditya303 bdb1bda
fix tests
kumaraditya303 d1fae6c
fix writelines and add comments
kumaraditya303 cd45016
optimize calling
kumaraditya303 5b962f5
use send if sendmsg does not exists in writelines
kumaraditya303 85d6909
Merge branch 'main' into asyncio-zero-copy
kumaraditya303 152b748
Update Lib/asyncio/selector_events.py
kumaraditya303 2c62bcb
more tests
kumaraditya303 9b92cff
check fatal error
kumaraditya303 7e05c2c
Merge branch 'main' into asyncio-zero-copy
kumaraditya303 97de955
Merge branch 'asyncio-zero-copy' of https://github.com/kumaraditya303…
kumaraditya303 57b1ba0
Merge branch 'main' of https://github.com/python/cpython into asyncio…
kumaraditya303 2ca3571
code review
kumaraditya303 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
Misc/NEWS.d/next/Library/2022-10-24-07-31-11.gh-issue-91166.-IG06R.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
:mod:`asyncio` is optimized to avoid excessive copying when writing to socket and use :meth:`~socket.socket.sendmsg` if the platform supports it. Patch by Kumar Aditya. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.