gevent 0.11.2 released

Denis Bilenko denis.bilenko at gmail.com
Thu Dec 10 10:49:10 CET 2009


gevent is a coroutine-based Python networking library that uses
greenlet to provide a high-level synchronous API on top of libevent
event loop.

Features include:

- convenient API around greenlets
- familiar synchronization primitives (Event, Queue)
- socket module that cooperates
- WSGI server on top of libevent-http
- DNS requests done asynchronously through libevent-dns
- monkey patching utility to get pure Python modules to cooperate

* changes in 0.11.2 *

- Fixed wsgi to unquote environ['PATH_INFO'] before passing to application.
- Added SERVER_SOFTWARE variable to wsgi environ.
- Fixed bug in JoinableQueue.task_done() that caused ValueError to be
raised incorrectly here.
- Fixed gevent.socket not to fail with ImportError if Python was not
built with ssl support.

Homepage: http://gevent.org
Download page: http://pypi.python.org/pypi/gevent


More information about the Python-announce-list mailing list