[issue23295] [Windows] asyncio: add UDP support to ProactorEventLoop

2018-09-14 Thread STINNER Victor
STINNER Victor added the comment: Duplicate of bpo-29883. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> asyncio: Windows Proactor Event Loop UDP Support ___ Python tracker

[issue23295] [Windows] asyncio: add UDP support to ProactorEventLoop

2015-01-22 Thread STINNER Victor
STINNER Victor added the comment: See also https://code.google.com/p/tulip/issues/detail?id=187 -- ___ Python tracker ___ ___ Python-b

[issue23295] [Windows] asyncio: add UDP support to ProactorEventLoop

2015-01-22 Thread STINNER Victor
Changes by STINNER Victor : -- type: -> enhancement ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue23295] [Windows] asyncio: add UDP support to ProactorEventLoop

2015-01-21 Thread STINNER Victor
New submission from STINNER Victor: ProactorEventLoop lacks UDP support: create_datagram_endpoint() is not supported. New functions should be added to the _overlapped modul. Example: add maybe WSARecvFrom()? -- components: Windows, asyncio messages: 234456 nosy: gvanrossum, haypo, ste