[issue43232] Prohibit previously deprecated operations on asyncio.trsock.TransportSocket

2021-09-17 Thread John Snow
John Snow added the comment: 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.) -- nosy: +jnsnow __

[issue43232] Prohibit previously deprecated operations on asyncio.trsock.TransportSocket

2021-06-29 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: 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

[issue43232] Prohibit previously deprecated operations on asyncio.trsock.TransportSocket

2021-06-29 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue43232] Prohibit previously deprecated operations on asyncio.trsock.TransportSocket

2021-06-27 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- versions: +Python 3.11 -Python 3.10 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue43232] Prohibit previously deprecated operations on asyncio.trsock.TransportSocket

2021-02-15 Thread Illia Volochii
Change by Illia Volochii : -- keywords: +patch pull_requests: +23324 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24538 ___ Python tracker ___ _

[issue43232] Prohibit previously deprecated operations on asyncio.trsock.TransportSocket

2021-02-15 Thread Illia Volochii
New submission from Illia Volochii : 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. -- components: asyncio messages: 387044 nosy: as