[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[Libevent-users] gevent 0.12.0 released
- To: python-announce-list@xxxxxxxxxx, libevent-users@xxxxxxxxxxxxx
- Subject: [Libevent-users] gevent 0.12.0 released
- From: Denis Bilenko <denis.bilenko@xxxxxxxxx>
- Date: Fri, 5 Feb 2010 13:48:26 +0600
- Delivered-to: archiver@xxxxxxxx
- Delivered-to: libevent-users-outgoing@xxxxxxxx
- Delivered-to: libevent-users@xxxxxxxx
- Delivery-date: Fri, 05 Feb 2010 02:48:31 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=kqz17HYdVehUi77KuNRr7DWixu2jKQjwEo4vgeHwGsc=; b=F0G1NEyGoR86miuP8IWY4urqCgCvAvsSz1tyIRm+Nng4KkBGpEsiAOpkV9CTENrX5+ 2xxPHz+P5smcCC5dTfxSiFOkark65coUqXHUYStSGGtd6sdZyli3ccF4GpKLWDcfRme0 cw645etpyb7i4cD0ToV18XGQzVgQsKm547Ke0=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=aIwrlHAaL2vSsdXK0Oki/Gv1vr8RC2tJ9HV8qNBRiqdRXTYCw7BgpBcegPdDocWz0L XE96QqS34MS+H0pk+DX/1tgHougygF6nL/NH1hpO4yvD6A+ZoveUyQKO/LF9shhdenw/ kEoZR/tNNHU+VqizrgbeybNwZo0KhYFC52rvw=
- Reply-to: libevent-users@xxxxxxxxxxxxx
- Sender: owner-libevent-users@xxxxxxxxxxxxx
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)
- cooperative socket and ssl modules
- WSGI server on top of libevent-http
- DNS requests done through libevent-dns
- monkey patching utility to get pure Python modules, like urllib2, to cooperate
Homepage: http://www.gevent.org
Download page: http://pypi.python.org/pypi/gevent
* changes in 0.12.0 *
- The major new feature is a gevent.ssl module, that provides
cooperative implementation of the standard ssl module. It does not
require any additional extensions on Python â 2.6. It also works on
2.4 and 2.5 if ssl package is installed. The old, PyOpenSSL-based
implementation of SSL objects is still available, but the new version
is the preferred way now.
- The library now compiles and passes most of the relevant tests on
Windows. Itâs still has a few rough edges (e.g. Ctrl-C is not
working), so it should be considered experimental.
- The socket object gained some performance improvements as well as a
number of bugfixes.
- Several incompatibilities of wsgi module with the WSGI spec have been fixed.
Read the full changelog entry here: http://www.gevent.org/changelog.html
***********************************************************************
To unsubscribe, send an e-mail to majordomo@xxxxxxxxxxxxx with
unsubscribe libevent-users in the body.