Hi, I have uploaded greenlet 0.3.2 to PyPI: http://pypi.python.org/pypi/greenlet
What is it? ----------- The greenlet module provides coroutines for python. coroutines allow suspending and resuming execution at certain locations. concurrence[1], eventlet[2] and gevent[3] use the greenlet module in order to implement concurrent network applications. Documentation can be found here: http://packages.python.org/greenlet/ The code is hosted on github: https://github.com/python-greenlet/greenlet Changes in version 0.3.2 ------------------------ The NEWS file lists these changes for release 0.3.2: * fix various crashes with recent gcc versions and VC90 * Try to fix stack save/restore on arm32 * store and restore the threadstate on exceptions like pypy/stackless do * Switch to using PyCapsule for Python 2.7 and 3.1 * Port for AIX on PowerPC * Fix the sparc/solaris header * Improved build dependencies patch from flub. * #21 - Can't pass parent=None to greenlet.greenlet() [1] http://opensource.hyves.org/concurrence/ [2] http://eventlet.net/ [3] http://www.gevent.org/ -- Cheers Ralf Schmitt -- http://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software Foundation: http://www.python.org/psf/donations/