diff options
author | Guido van Rossum <guido@python.org> | 2015-10-05 16:19:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2015-10-05 16:19:11 (GMT) |
commit | eda1955d82d901af7ed730eb5a3996f0d55786ba (patch) | |
tree | f0356725e7044ee3ac9759e15c4f07c06bcff228 /Misc/NEWS | |
parent | e25511a566d27961748f3c62015ebc0da4f05ecc (diff) | |
parent | b9bf913ab32d27d221fb765fd90d64d07e926000 (diff) | |
download | cpython-eda1955d82d901af7ed730eb5a3996f0d55786ba.zip cpython-eda1955d82d901af7ed730eb5a3996f0d55786ba.tar.gz cpython-eda1955d82d901af7ed730eb5a3996f0d55786ba.tar.bz2 |
Issue #23972: updates to asyncio datagram API. By Chris Laws. (Merge 3.4->3.5.)
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -34,6 +34,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. |