guv icon indicating copy to clipboard operation
guv copied to clipboard

A fast event loop like gevent for Python 3, built on greenlets and libuv

Results 15 guv issues
Sort by recently updated
recently updated
newest added

Hi, I'm trying to port locust (http://github.com/locustio/locust) from python2 + gevent to python3 + guv, but I have a problem with the socket mockey patch. I don't know how to...

Python 3 doesn't use `fileobject`; everything happens through the `io` module. The read/write methods in those classes need to be patched to allow for system-wide cooperative files. This shouldn't be...

help wanted

Use py.test, and make use of fixtures and `with pytest.raises()`. Most gevent/eventlet tests are valid for guv, but the annoying part is turning them from unittest format into py.test format.

help wanted

We need to add pyzmq support. Good starting points are as follows: - The eventlet zmq support module, but this might be a bit outdated. - The pyzmq project itself,...

enhancement

Currently, most libuv handles are implemented. The remaining tasks are as follows: - Implement the remaining handle types, and implement those methods which currently raise NotImplementedError. - Write tests (see...

help wanted