diff options
author | Guido van Rossum <guido@python.org> | 2015-10-05 16:15:28 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2015-10-05 16:15:28 (GMT) |
commit | b9bf913ab32d27d221fb765fd90d64d07e926000 (patch) | |
tree | 375ff9c2e3ae0287a6b4ae8b00630f04015ba674 /Misc | |
parent | d17e9785de023fc425142e0d348f368677b90011 (diff) | |
download | cpython-b9bf913ab32d27d221fb765fd90d64d07e926000.zip cpython-b9bf913ab32d27d221fb765fd90d64d07e926000.tar.gz cpython-b9bf913ab32d27d221fb765fd90d64d07e926000.tar.bz2 |
Issue #23972: updates to asyncio datagram API. By Chris Laws.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 6 |
2 files changed, 7 insertions, 0 deletions
@@ -789,6 +789,7 @@ Ben Laurie Simon Law Julia Lawall Chris Lawrence +Chris Laws Brian Leair Mathieu Leduc-Hamel Amandine Lee @@ -90,6 +90,12 @@ Core and Builtins Library ------- +- Issue #23972: Updates asyncio datagram create method allowing reuseport + and reuseaddr socket options to be set prior to binding the socket. + Mirroring the existing asyncio create_server method the reuseaddr option + for datagram sockets defaults to True if the O/S is 'posix' (except if the + platform is Cygwin). Patch by Chris Laws. + - Issue #25304: Add asyncio.run_coroutine_threadsafe(). This lets you submit a coroutine to a loop from another thread, returning a concurrent.futures.Future. By Vincent Michel. |