]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-45129 Remove deprecated reuse_address (GH-28207)
authorHugo van Kemenade <hugovk@users.noreply.github.com>
Wed, 8 Sep 2021 16:58:43 +0000 (19:58 +0300)
committerGitHub <noreply@github.com>
Wed, 8 Sep 2021 16:58:43 +0000 (18:58 +0200)
commit59ea704df7a2fae4559e1e04f7a59d6c40f63657
treed465a855c6325d2faeb2486a33d3183058ac6ebf
parenta5610057615779ca6fc75d9e006d2fae644a94d3
bpo-45129 Remove deprecated reuse_address (GH-28207)

Due to significant security concerns, the reuse_address parameter of
asyncio.loop.create_datagram_endpoint, deprecated in Python 3.9, is
now removed. This is because of the behavior of the socket option
SO_REUSEADDR in UDP.

Co-authored-by: Ɓukasz Langa <lukasz@langa.pl>
Doc/library/asyncio-eventloop.rst
Doc/whatsnew/3.11.rst
Lib/asyncio/base_events.py
Lib/test/test_asyncio/test_base_events.py
Misc/NEWS.d/next/Library/2021-09-07-14-27-39.bpo-45129.vXH0gw.rst [new file with mode: 0644]