[issue23972] Asyncio reuseport

2015-10-06 Thread chris laws
chris laws added the comment: This patch contains minor updates to resolve the Buildbot issues observed on the Windows and Debian platforms after the initial #23972 change set was committed. -- Added file: http://bugs.python.org/file40696/23972_cjl_v006.patch

[issue23972] Asyncio reuseport

2015-10-05 Thread chris laws
chris laws added the comment: I've checked the Buildbot results and observed a few errors related to this change. Specifically the issues affect Windows and Debian. Builder AMD64 Debian root 3.x build #2772 - http://buildbot.python.org/all/builders/AMD64%20Debian%20root%203.x/builds

[issue23972] Asyncio reuseport

2015-10-02 Thread chris laws
chris laws added the comment: Updates addressing review comments. -- Added file: http://bugs.python.org/file40664/23972_cjl_v004.patch ___ Python tracker <http://bugs.python.org/issue23

[issue23972] Asyncio reuseport

2015-09-29 Thread chris laws
chris laws added the comment: Rebase patch onto current master. -- Added file: http://bugs.python.org/file40616/23972_cjl_v003.patch ___ Python tracker <http://bugs.python.org/issue23

[issue23972] Asyncio reuseport

2015-08-22 Thread chris laws
chris laws added the comment: I have updated the patch to address comments raised by haypo. An exception is now raised if reuse_port is explicitly used and the platform does not support SOREUSEPORT. The docs have also been updated to make it more explicit that this feature is not supported

[issue23972] Asyncio reuseport

2015-07-15 Thread chris laws
chris laws added the comment: Attached is a patch that implements the suggested solution along with tests and associated doc updates. Hope this helps. -- keywords: +patch Added file: http://bugs.python.org/file39930/23972_cjl.patch ___ Python

[issue23972] Asyncio reuseport

2015-07-13 Thread chris laws
chris laws added the comment: I encountered this issue too. I needed it resolved ASAP for my work so I created a loop patch that partially implements the suggestion solution by overriding the create_datagram_endpoint method. Perhaps this might be of some use to the eventual ticket resolver