diff options
author | Kyle Stanley <aeros167@gmail.com> | 2019-12-16 21:50:34 (GMT) |
---|---|---|
committer | Yury Selivanov <yury@magic.io> | 2019-12-16 21:50:34 (GMT) |
commit | f501db2b93a9d3d840b6fb38d6bdda8bcc400d4a (patch) | |
tree | 941960d2064780493270b9d9d1e8e34bf95f08b0 /Doc/whatsnew/3.6.rst | |
parent | 6a263cf1adfc18cdba65c788dd76d35997a89acf (diff) | |
download | cpython-f501db2b93a9d3d840b6fb38d6bdda8bcc400d4a.zip cpython-f501db2b93a9d3d840b6fb38d6bdda8bcc400d4a.tar.gz cpython-f501db2b93a9d3d840b6fb38d6bdda8bcc400d4a.tar.bz2 |
Add whatsnew for removal of asyncio.loop.create_datagram_endpoint()'s *reuse_address* parameter (#17595)
Diffstat (limited to 'Doc/whatsnew/3.6.rst')
-rw-r--r-- | Doc/whatsnew/3.6.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index 3f5f520..04c1f7e 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -2433,3 +2433,13 @@ In 3.6.7 the :mod:`tokenize` module now implicitly emits a ``NEWLINE`` token when provided with input that does not have a trailing new line. This behavior now matches what the C tokenizer does internally. (Contributed by Ammar Askar in :issue:`33899`.) + +Notable changes in Python 3.6.10 +================================ + +Due to significant security concerns, the *reuse_address* parameter of +:meth:`asyncio.loop.create_datagram_endpoint` is no longer supported. This is +because of the behavior of the socket option ``SO_REUSEADDR`` in UDP. For more +details, see the documentation for ``loop.create_datagram_endpoint()``. +(Contributed by Kyle Stanley, Antoine Pitrou, and Yury Selivanov in +:issue:`37228`.) |