summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authortwisteroid ambassador <twisteroidambassador@users.noreply.github.com>2019-05-05 11:14:35 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-05-05 11:14:35 (GMT)
commit88f07a804a0adc0b6ee87687b59d8416113c7331 (patch)
treee7fcadefb5269eb9b03c5c5946a31387ab7839e7 /Misc
parentc4d92c8ada7ecfc479ebb1dd4a819c9202155970 (diff)
downloadcpython-88f07a804a0adc0b6ee87687b59d8416113c7331.zip
cpython-88f07a804a0adc0b6ee87687b59d8416113c7331.tar.gz
cpython-88f07a804a0adc0b6ee87687b59d8416113c7331.tar.bz2
bpo-33530: Implement Happy Eyeballs in asyncio, v2 (GH-7237)
Added two keyword arguments, `delay` and `interleave`, to `BaseEventLoop.create_connection`. Happy eyeballs is activated if `delay` is specified. We now have documentation for the new arguments. `staggered_race()` is in its own module, but not exported to the main asyncio package. https://bugs.python.org/issue33530
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-05-29-18-34-53.bpo-33530._4Q_bi.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-05-29-18-34-53.bpo-33530._4Q_bi.rst b/Misc/NEWS.d/next/Library/2018-05-29-18-34-53.bpo-33530._4Q_bi.rst
new file mode 100644
index 0000000..747219b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-05-29-18-34-53.bpo-33530._4Q_bi.rst
@@ -0,0 +1,3 @@
+Implemented Happy Eyeballs in `asyncio.create_connection()`. Added two new
+arguments, *happy_eyeballs_delay* and *interleave*,
+to specify Happy Eyeballs behavior.