[issue28724] Add method send_io, recv_io to the socket module.

2021-04-21 Thread Inada Naoki
Change by Inada Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.9 -Python 3.7 ___ Python tracker ___

[issue28724] Add method send_io, recv_io to the socket module.

2021-04-21 Thread miss-islington
miss-islington added the comment: New changeset 87a392db40d52cba18ffc67730856e11cb8cf945 by Miss Islington (bot) in branch '3.9': bpo-28724: Doc: Move socket.send_fds and socket.recv_fds docs to right section (GH-22608)

[issue28724] Add method send_io, recv_io to the socket module.

2021-04-21 Thread miss-islington
Change by miss-islington : -- nosy: +miss-islington nosy_count: 8.0 -> 9.0 pull_requests: +24235 pull_request: https://github.com/python/cpython/pull/25517 ___ Python tracker

[issue28724] Add method send_io, recv_io to the socket module.

2021-04-21 Thread Inada Naoki
Inada Naoki added the comment: New changeset 660592f67c0d825b06eb4a38ccc04b34a1f01f00 by Saiyang Gou in branch 'master': bpo-28724: Doc: Move socket.send_fds and socket.recv_fds docs to right section (GH-22608)

[issue28724] Add method send_io, recv_io to the socket module.

2021-04-21 Thread Saiyang Gou
Change by Saiyang Gou : -- nosy: +gousaiyang nosy_count: 7.0 -> 8.0 pull_requests: +24232 pull_request: https://github.com/python/cpython/pull/22608 ___ Python tracker ___

[issue28724] Add method send_io, recv_io to the socket module.

2020-08-30 Thread Shantanu
Shantanu added the comment: I was looking at adding stubs for these to typeshed. Is it intentional that we ignore the flags and address arguments in the implementation? -- nosy: +hauntsaninja ___ Python tracker

[issue28724] Add method send_io, recv_io to the socket module.

2019-09-11 Thread STINNER Victor
STINNER Victor added the comment: Thanks Shinya Okano for the original patch. Well done Joannah! Thanks for your tenacity :-) This PR has 100 comments and 27 commits which shows the complexity of the feature. Honestly, I'm not 100% happy with current documentation, but I chose to merge the

[issue28724] Add method send_io, recv_io to the socket module.

2019-09-11 Thread STINNER Victor
STINNER Victor added the comment: New changeset 8d120f75fb8c8731464b5f7531d74cdbb897d924 by Victor Stinner (Joannah Nanjekye) in branch 'master': bpo-28724: Add methods send_fds and recv_fds to the socket module (GH-12889)

[issue28724] Add method send_io, recv_io to the socket module.

2019-06-24 Thread STINNER Victor
STINNER Victor added the comment: See also bpo-37385: "test_multiprocessing fails on AMD64 FreeBSD CURRENT Shared 2.7". -- nosy: +vstinner ___ Python tracker ___

[issue28724] Add method send_io, recv_io to the socket module.

2019-04-20 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue28724] Add method send_io, recv_io to the socket module.

2019-04-20 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- pull_requests: +12815 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue28724] Add method send_io, recv_io to the socket module.

2016-12-06 Thread Christian Heimes
Christian Heimes added the comment: Take your time, feature freeze for 3.7 is in about 18 months from now. -- ___ Python tracker ___

[issue28724] Add method send_io, recv_io to the socket module.

2016-12-05 Thread Shinya Okano
Shinya Okano added the comment: Thanks for reviews and comments. I will work on the weekend. -- ___ Python tracker ___

[issue28724] Add method send_io, recv_io to the socket module.

2016-12-05 Thread Christian Heimes
Christian Heimes added the comment: Good idea! Initially I planned to add the functions and some other helpers around AF_UNIX to Python 3.6. You can directly copy the example functions from the documentation. https://docs.python.org/3/library/socket.html#socket.socket.sendmsg

[issue28724] Add method send_io, recv_io to the socket module.

2016-12-04 Thread Julien Palard
Julien Palard added the comment: Unless somebody don't think so, I think this should go as a pypi module before going to the socket module, so this issue should probably be closed. -- ___ Python tracker

[issue28724] Add method send_io, recv_io to the socket module.

2016-11-18 Thread INADA Naoki
INADA Naoki added the comment: FYI, multiprocessing.reduction module has send_fds and recv_fds. -- nosy: +inada.naoki ___ Python tracker ___

[issue28724] Add method send_io, recv_io to the socket module.

2016-11-17 Thread Julien Palard
Julien Palard added the comment: Hi, thanks for your contribution! Documentation give examples implementation of your methods: - https://docs.python.org/3/library/socket.html#socket.socket.sendmsg - https://docs.python.org/3/library/socket.html#socket.socket.recvmsg and from here, some

[issue28724] Add method send_io, recv_io to the socket module.

2016-11-17 Thread Shinya Okano
New submission from Shinya Okano: This patch makes it easy to pass file descriptor in using AF_UNIX. Ruby language libraries have such methods. see slso: - https://docs.ruby-lang.org/en/2.3.0/UNIXSocket.html#method-i-send_io -- components: Library (Lib) files: