V G
V G
Currently working on fixing this. If you could come up with some test cases, aside from the issue itself, or better yet write some py.test code, that would be an...
This is likely happening because guv recompiles the shared object on every invocation. I was doing that to make debugging easier. The solution may be to disable that. I'll see...
@jaddison libuv is written in C and is most certainly _much_ faster, cross-platform, and supports more interesting async features than the Python asyncio module's event loop implementation (which of course...
No no, there won't be an implementation change, just an interface change. It'll still use libuv and behave in exactly the same way. I'll just be changing the guv core...
Currently, pyuv_cffi (which is what guv is using) is fully compatible with @saghul's pyuv. If you do nothing more than change the imported library to pyuv, it should work exactly...
Nice, this is an easy enough fix.
I agree, added an enhancement tag to this issue. I'll keep it open until it's added.
Ok, I know how to fix this, but extremely busy with other things at the moment. I'll give it a shot in a ~~couple of~~ few days.
Can you link me to your fork and script that you're using to test? It would help quite a bit when I start fixing this. Also, I haven't heard of...
Thanks for helping with this! 1. Make sure you have pulled the latest changes from `develop`. 2. In the root directory, simply run `py.test`. I started porting the socket test...