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: Prohibit previously deprecated operations on asyncio.trsock.TransportSocket
Type: Stage: resolved
Components: asyncio Versions: Python 3.11
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: asvetlov, illia-v, jnsnow, serhiy.storchaka, yselivanov
Priority: normal Keywords: patch

Created on 2021-02-15 19:16 by illia-v, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 24538 merged illia-v, 2021-02-15 19:24
Messages (3)
msg387044 - (view) Author: Illia Volochii (illia-v) * Date: 2021-02-15 19:16
https://github.com/python/cpython/blob/a2f0654b0a5b4c4f726155620002cc1f5f2d206a/Lib/asyncio/trsock.py#L19-L24

Using of the operations was supposed to be prohibited in Python 3.9, but that was missed.
msg396768 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2021-06-30 06:19
New changeset 1d08d85cbe49c0748a8ee03aec31f89ab8e81496 by Illia Volochii in branch 'main':
bpo-43232: Remove previously deprecated methods on TransportSocket (GH-24538)
https://github.com/python/cpython/commit/1d08d85cbe49c0748a8ee03aec31f89ab8e81496
msg402072 - (view) Author: John Snow (jnsnow) Date: 2021-09-17 18:40
Without sendmsg(), is there any other way to send SCM_RIGHTS ancillary messages over an asyncio-managed UNIX socket?

(Is there a better place to discuss this? Kindly point me in the right direction if so.)
History
Date User Action Args
2022-04-11 14:59:41adminsetgithub: 87398
2021-09-17 18:40:11jnsnowsetnosy: + jnsnow
messages: + msg402072
2021-06-30 06:19:36serhiy.storchakasetnosy: + serhiy.storchaka
messages: + msg396768
2021-06-30 06:19:34serhiy.storchakasetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2021-06-28 06:49:52serhiy.storchakasetversions: + Python 3.11, - Python 3.10
2021-02-15 19:24:28illia-vsetkeywords: + patch
stage: patch review
pull_requests: + pull_request23324
2021-02-15 19:16:49illia-vcreate