[issue27149] Implement socket.sendmsg() for Windows

2021-02-26 Thread jakirkham
Change by jakirkham : -- nosy: +jakirkham ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue27149] Implement socket.sendmsg() for Windows

2016-06-18 Thread Марк Коренберг
Марк Коренберг added the comment: WSASend function can send array of buffers: https://msdn.microsoft.com/en-us/library/ms742203(v=vs.85).aspx -- ___ Python tracker ___ _

[issue27149] Implement socket.sendmsg() for Windows

2016-05-29 Thread Марк Коренберг
Марк Коренберг added the comment: No, I hate Windows, Winapi and so on. But I have problems in patching asyncio https://github.com/python/asyncio/pull/339 Since greate optimisation may be acheived using sendmsg() -- ___ Python tracker

[issue27149] Implement socket.sendmsg() for Windows

2016-05-29 Thread R. David Murray
R. David Murray added the comment: Would you like to propose a patch? -- nosy: +r.david.murray ___ Python tracker ___ ___ Python-bugs-

[issue27149] Implement socket.sendmsg() for Windows

2016-05-29 Thread Марк Коренберг
Марк Коренберг added the comment: https://github.com/pauldotknopf/WindowsSDK7-Samples/blob/master/netds/winsock/sendmsg/SendMsg.cpp Seems, supported since Vista -- ___ Python tracker __

[issue27149] Implement socket.sendmsg() for Windows

2016-05-28 Thread Марк Коренберг
New submission from Марк Коренберг: Please add, but do not emulate, since atomicity of that IO must be kept, as said in man-page. -- components: Library (Lib), Windows messages: 266586 nosy: mmarkk, paul.moore, steve.dower, tim.golden, zach.ware priority: normal severity: normal status: