-
-
Notifications
You must be signed in to change notification settings - Fork 32.9k
bpo-33530: Implement Happy Eyeballs in asyncio, v2 #7237
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
miss-islington
merged 23 commits into
python:master
from
twisteroidambassador:happy-eyeballs
May 5, 2019
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
a755bbb
Implement Happy Eyeballs in asyncio.
twisteroidambassador fc29450
Use module import instead of individual imports.
twisteroidambassador d792c43
Change TODO.
twisteroidambassador f9111d0
Rename helpers.py to staggered.py.
twisteroidambassador ded34e0
Add create_connection()'s new arguments in documentation.
twisteroidambassador b069c95
Add blurb.
twisteroidambassador c5d3a92
Implement Happy Eyeballs in asyncio.
twisteroidambassador 38c7caa
Use module import instead of individual imports.
twisteroidambassador 70ec96d
Change TODO.
twisteroidambassador cef0a76
Rename helpers.py to staggered.py.
twisteroidambassador 73a4a5a
Add create_connection()'s new arguments in documentation.
twisteroidambassador b3a6e1c
Add blurb.
twisteroidambassador 632166d
Merge remote-tracking branch 'origin/happy-eyeballs' into happy-eyeballs
twisteroidambassador b8d7e41
Remove _roundrobin as a standalone function.
twisteroidambassador ecdc83a
Rename delay to happy_eyeballs_delay and decouple from interleave.
twisteroidambassador 5fa5a9b
Update docs.
twisteroidambassador 321e4ac
Update comments.
twisteroidambassador b4227ed
Import staggered_race into main asyncio package.
twisteroidambassador cffacc7
Change `delay` to `happy_eyeballs_delay` in AbstractEventLoop.
twisteroidambassador 3e304dd
Change `delay` to `happy_eyeballs_delay` in documentation and blurb.
twisteroidambassador a8c39b9
Add suggested value for `happy_eyeballs_delay` in documentation.
twisteroidambassador f6f2219
Tune RST markup
asvetlov f0e37e6
Keep .staggered as private API
asvetlov 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
Tune RST markup
- Loading branch information
commit f6f2219c494ffa9d5d0442d856fd788c9d59aca4
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
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.
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.
Maybe it's worth naming the parameter
interleave_af
to make it more explicit.