summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2015-10-05 16:19:11 (GMT)
committerGuido van Rossum <guido@python.org>2015-10-05 16:19:11 (GMT)
commiteda1955d82d901af7ed730eb5a3996f0d55786ba (patch)
treef0356725e7044ee3ac9759e15c4f07c06bcff228 /Misc/NEWS
parente25511a566d27961748f3c62015ebc0da4f05ecc (diff)
parentb9bf913ab32d27d221fb765fd90d64d07e926000 (diff)
downloadcpython-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/NEWS6
1 files changed, 6 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2e4d32f..778ab89 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.