Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #47352 > unrolled thread

[ANNOUNCE] greenlet 0.4.1

Started byRalf Schmitt <ralf@systemexit.de>
First post2013-06-07 22:47 +0200
Last post2013-06-07 20:46 -0400
Articles 2 — 2 participants

Back to article view | Back to comp.lang.python


Contents

  [ANNOUNCE] greenlet 0.4.1 Ralf Schmitt <ralf@systemexit.de> - 2013-06-07 22:47 +0200
    Re: [ANNOUNCE] greenlet 0.4.1 Roy Smith <roy@panix.com> - 2013-06-07 20:46 -0400

#47352 — [ANNOUNCE] greenlet 0.4.1

FromRalf Schmitt <ralf@systemexit.de>
Date2013-06-07 22:47 +0200
Subject[ANNOUNCE] greenlet 0.4.1
Message-ID<mailman.2864.1370638034.3114.python-list@python.org>
Hi,

I have uploaded greenlet 0.4.1 to PyPI:
https://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://greenlet.readthedocs.org

The code is hosted on github:
https://github.com/python-greenlet/greenlet


Changes in version 0.4.1
------------------------
The NEWS file lists these changes for release 0.4.1:

* fix segfaults when using gcc 4.8 on amd64/x86 unix
* try to disable certain gcc 4.8 optimizations that make greenlet
  crash
* Fix greenlet on aarch64 with gcc 4.8
* workaround segfault on SunOS/sun4v
* Add support for Aarch64
* Add support for x32 psABI on x86_64
* Changed memory constraints for assembly macro for PPC Linux
  platforms.


Many thanks to all contributors!


[1] http://opensource.hyves.org/concurrence/
[2] http://eventlet.net/
[3] http://www.gevent.org/

-- 
Cheers
Ralf Schmitt

[toc] | [next] | [standalone]


#47357

FromRoy Smith <roy@panix.com>
Date2013-06-07 20:46 -0400
Message-ID<roy-4D7645.20464807062013@news.panix.com>
In reply to#47352
In article <mailman.2864.1370638034.3114.python-list@python.org>,
 Ralf Schmitt <ralf@systemexit.de> wrote:

> Hi,
> 
> I have uploaded greenlet 0.4.1 to PyPI:
> https://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.

We use gevent at Songza.  It's very cool.  We went from 50 gunicorn 
workers per server to 8 when we switched to gevent.

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web