Skip to content
Merged
Show file tree
Hide file tree
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 May 24, 2018
fc29450
Use module import instead of individual imports.
twisteroidambassador May 29, 2018
d792c43
Change TODO.
twisteroidambassador May 29, 2018
f9111d0
Rename helpers.py to staggered.py.
twisteroidambassador May 29, 2018
ded34e0
Add create_connection()'s new arguments in documentation.
twisteroidambassador May 29, 2018
b069c95
Add blurb.
twisteroidambassador May 29, 2018
c5d3a92
Implement Happy Eyeballs in asyncio.
twisteroidambassador May 24, 2018
38c7caa
Use module import instead of individual imports.
twisteroidambassador May 29, 2018
70ec96d
Change TODO.
twisteroidambassador May 29, 2018
cef0a76
Rename helpers.py to staggered.py.
twisteroidambassador May 29, 2018
73a4a5a
Add create_connection()'s new arguments in documentation.
twisteroidambassador May 29, 2018
b3a6e1c
Add blurb.
twisteroidambassador May 29, 2018
632166d
Merge remote-tracking branch 'origin/happy-eyeballs' into happy-eyeballs
twisteroidambassador May 30, 2018
b8d7e41
Remove _roundrobin as a standalone function.
twisteroidambassador Jun 3, 2018
ecdc83a
Rename delay to happy_eyeballs_delay and decouple from interleave.
twisteroidambassador Jun 3, 2018
5fa5a9b
Update docs.
twisteroidambassador Jun 5, 2018
321e4ac
Update comments.
twisteroidambassador Jun 5, 2018
b4227ed
Import staggered_race into main asyncio package.
twisteroidambassador Jun 5, 2018
cffacc7
Change `delay` to `happy_eyeballs_delay` in AbstractEventLoop.
twisteroidambassador Jun 26, 2018
3e304dd
Change `delay` to `happy_eyeballs_delay` in documentation and blurb.
twisteroidambassador Jun 26, 2018
a8c39b9
Add suggested value for `happy_eyeballs_delay` in documentation.
twisteroidambassador Jun 26, 2018
f6f2219
Tune RST markup
asvetlov Aug 1, 2018
f0e37e6
Keep .staggered as private API
asvetlov May 5, 2019
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
Change delay to happy_eyeballs_delay in documentation and blurb.
  • Loading branch information
twisteroidambassador committed Jun 26, 2018
commit 3e304dd470ab61d37b0ce52314fb6dd06e5422e4
4 changes: 2 additions & 2 deletions Doc/library/asyncio-eventloop.rst
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ Creating connections
* *sock*, if given, should be an existing, already connected
:class:`socket.socket` object to be used by the transport.
If *sock* is given, none of *host*, *port*, *family*, *proto*, *flags*,
*delay*, *interleave*
*happy_eyeballs_delay*, *interleave*
and *local_addr* should be specified.

* *local_addr*, if given, is a ``(local_host, local_port)`` tuple used
Expand All @@ -372,7 +372,7 @@ Creating connections

.. versionadded:: 3.8

The *delay* and *interleave* parameters.
The *happy_eyeballs_delay* and *interleave* parameters.

.. versionadded:: 3.7

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
Implemented Happy Eyeballs in `asyncio.create_connection()`. Added two new
arguments, *delay* and *interleave*, to specify Happy Eyeballs behavior.
arguments, *happy_eyeballs_delay* and *interleave*,
to specify Happy Eyeballs behavior.