]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.6] Add whatsnew for removal of asyncio.loop.create_datagram_endpoint()'s *reuse_ad...
authorKyle Stanley <aeros167@gmail.com>
Mon, 16 Dec 2019 23:19:36 +0000 (18:19 -0500)
committerNed Deily <nad@python.org>
Mon, 16 Dec 2019 23:19:36 +0000 (18:19 -0500)
(cherry picked from commit f501db2b93a9d3d840b6fb38d6bdda8bcc400d4a)

Co-authored-by: Kyle Stanley <aeros167@gmail.com>
Doc/whatsnew/3.6.rst

index bd5c6340130ec15b70d932e6bc373f2a3ac3071f..90250e46b687f8bc89902454b6bfb163863ae96d 100644 (file)
@@ -2449,3 +2449,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`.)