[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2019-05-28 Thread Andrew Svetlov
Andrew Svetlov added the comment: You are welcome, Victor! Thank you very much, Adam! -- ___ Python tracker ___ ___

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2019-05-28 Thread STINNER Victor
STINNER Victor added the comment: I planned to ask you (Adam and Andrew) to merge the PR even if it's not finished, just to make sure that UDP support will land into Python 3.8. But Andrew finished the PR, yahoo! Thanks you very much Adam Meily and Andrew Svetlov! Sorry, I planned to do

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2019-05-28 Thread Andrew Svetlov
Change by Andrew Svetlov : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2019-05-28 Thread miss-islington
miss-islington added the comment: New changeset bafd4b5ac83b6cc0b7455290a04c4bfad34bdc90 by Miss Islington (bot) (Andrew Svetlov) in branch 'master': bpo-29883: Asyncio proactor udp (GH-13440) https://github.com/python/cpython/commit/bafd4b5ac83b6cc0b7455290a04c4bfad34bdc90 --

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2019-05-20 Thread Andrew Svetlov
Change by Andrew Svetlov : -- keywords: +patch pull_requests: +13349 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2019-04-04 Thread Alex Chandel
Alex Chandel added the comment: Could this be merged? UDP and pipes are critical for non-trivial asyncio programs on Windows, and this should be merged before the 3.8 feature window closes. -- nosy: +Alex Chandel ___ Python tracker

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2018-09-16 Thread Carol Willing
Change by Carol Willing : -- nosy: +willingc stage: test needed -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2018-09-15 Thread Adam Meily
Adam Meily added the comment: I've rebased onto upstream master and I fixed the CI build. -- ___ Python tracker ___ ___

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2018-09-14 Thread STINNER Victor
STINNER Victor added the comment: Adam Meily: Thanks for the proposed pull request. Would you mind to try to rebase it on the current master branch, please? -- ___ Python tracker

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2018-09-14 Thread STINNER Victor
STINNER Victor added the comment: Copy of my messages in July 2014: https://github.com/python/asyncio/issues/187 """ ProcatorEventLoop doesn't support UDP right now. I'm working on a patch. I need to implement WSARecvFrom in the _overlapped module for example. ConnectEx() fails with an

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2018-09-14 Thread STINNER Victor
STINNER Victor added the comment: I just marked my old issue bpo-23295 as duplicate of this one. Copy of my messages: """ ProactorEventLoop lacks UDP support: create_datagram_endpoint() is not supported. New functions should be added to the _overlapped modul. Example: add maybe

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2017-12-08 Thread Yury Selivanov
Change by Yury Selivanov : -- nosy: +asvetlov ___ Python tracker ___ ___

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2017-04-09 Thread Adam Meily
Changes by Adam Meily : -- pull_requests: +1213 ___ Python tracker ___ ___

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2017-03-24 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- stage: -> test needed versions: +Python 3.7 -Python 3.5 ___ Python tracker ___

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2017-03-23 Thread Brett Cannon
Changes by Brett Cannon : -- nosy: +giampaolo.rodola, haypo ___ Python tracker ___ ___

[issue29883] asyncio: Windows Proactor Event Loop UDP Support

2017-03-22 Thread Adam Meily
New submission from Adam Meily: I am working on a Python 3.5 project that uses asyncio on a Windows system to poll both UDP and TCP connections. Multiple sources online say that the Windows Proactor event loop, which uses I/O Completion Ports, is considerably faster and more efficient than