[issue31819] Add sock_recv_into to AbstractEventLoop

2020-08-04 Thread STINNER Victor
Change by STINNER Victor : -- nosy: +giampaolo.rodola ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue31819] Add sock_recv_into to AbstractEventLoop

2020-08-03 Thread STINNER Victor
STINNER Victor added the comment: Follow-up issue, bpo-41467: asyncio: recv_into() must not return b'' if the socket/pipe is closed. -- nosy: -giampaolo.rodola ___ Python tracker __

[issue31819] Add sock_recv_into to AbstractEventLoop

2017-10-19 Thread Yury Selivanov
Yury Selivanov added the comment: Merged. Thank you, Antoine! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue31819] Add sock_recv_into to AbstractEventLoop

2017-10-19 Thread Yury Selivanov
Yury Selivanov added the comment: New changeset 525f40d231aba2c004619fc7a5207171ed65b0cb by Yury Selivanov (Antoine Pitrou) in branch 'master': bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051) https://github.com/python/cpython/commit/525f40d231aba2c004619fc7a5207171ed65b0cb

[issue31819] Add sock_recv_into to AbstractEventLoop

2017-10-19 Thread Guido van Rossum
Guido van Rossum added the comment: SGTM. On Oct 19, 2017 11:05 AM, "Yury Selivanov" wrote: > > Yury Selivanov added the comment: > > I'm going to approve this unless there are any objections. > > -- > nosy: +gvanrossum > > ___ > Python tracker >

[issue31819] Add sock_recv_into to AbstractEventLoop

2017-10-19 Thread Yury Selivanov
Yury Selivanov added the comment: I'm going to approve this unless there are any objections. -- nosy: +gvanrossum ___ Python tracker ___ ___

[issue31819] Add sock_recv_into to AbstractEventLoop

2017-10-19 Thread Antoine Pitrou
Change by Antoine Pitrou : -- keywords: +patch pull_requests: +4020 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-li

[issue31819] Add sock_recv_into to AbstractEventLoop

2017-10-19 Thread Antoine Pitrou
New submission from Antoine Pitrou : As sock_recv() is already exposed, it is a no-brainer to add sock_recv_into(), allowing finer buffer management when people are willing to handle a socket object. -- components: Library (Lib), asyncio messages: 304623 nosy: giampaolo.rodola, haypo,