This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Remove deprecated reuse_address parameter from create_datagram_endpoint()
Type: Stage: resolved
Components: asyncio Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, hugovk, lukasz.langa, yselivanov
Priority: normal Keywords: patch

Created on 2021-09-07 14:36 by hugovk, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 28207 merged hugovk, 2021-09-07 14:40
Messages (4)
msg401290 - (view) Author: Hugo van Kemenade (hugovk) * (Python triager) Date: 2021-09-07 14:36
The reuse_address parameter was deprecated in Python 3.9 by bpo-37228.

It can be removed in Python 3.11.

PR to follow.
msg401310 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-09-07 16:58
To clarify, the option was entirely disabled in 3.9.0, 3.8.1, 3.7.6, and 3.6.10 due to security concerns. If `True` was passed, it raised a ValueError. If `False` was passed, it raised a DeprecationWarning. This was implemented in GH-17311 and What's New was updated in GH-17595.
msg401405 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-09-08 16:58
New changeset 59ea704df7a2fae4559e1e04f7a59d6c40f63657 by Hugo van Kemenade in branch 'main':
bpo-45129 Remove deprecated reuse_address (GH-28207)
https://github.com/python/cpython/commit/59ea704df7a2fae4559e1e04f7a59d6c40f63657
msg401406 - (view) Author: Łukasz Langa (lukasz.langa) * (Python committer) Date: 2021-09-08 16:59
Thanks, Hugo! ✨ 🍰 ✨
History
Date User Action Args
2022-04-11 14:59:49adminsetgithub: 89292
2021-09-08 16:59:44lukasz.langasetstatus: open -> closed
resolution: fixed
messages: + msg401406

stage: patch review -> resolved
2021-09-08 16:58:50lukasz.langasetmessages: + msg401405
2021-09-07 16:58:35lukasz.langasetnosy: + lukasz.langa
messages: + msg401310
2021-09-07 14:40:08hugovksetkeywords: + patch
stage: patch review
pull_requests: + pull_request26632
2021-09-07 14:36:46hugovkcreate