Tomáš Rottenberg
Tomáš Rottenberg
I've written some simple examples to demonstrate the issue. You can read the source code below. ``` python # client.py import asyncio class SendProtocol: def __init__(self, message, loop): self.message =...
I was probably using wrong Python build after all. But even after switching to Python 3.5.2 for 64-bit machines, the problem persists.
Thanks for the tip! I will try to do as much as I can to resolve this and see what I can do.
I have done some tests and this is the best solution I have found so far. ``` python class _SelectorDatagramTransport(_SelectorTransport): _buffer_factory = collections.deque def __init__(self, loop, sock, protocol, address=None, waiter=None,...
I have changed the title of this issue to make it more descriptive.
Hey @SethMichaelLarson, that would be great! The problem still persists. When I run the example code I have posted before it spits following output on the client's side. ``` Sending:...
Awesome! Please keep us updated on your progress.
@SethMichaelLarson Although I cannot test out your fix on Windows 7 machine, since I have updated the one I used before to Windows 10, applying your changes on my Windows...