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


Groups > comp.lang.python.announce > #512

[ANNOUNCE] greenlet 0.3.4

Path csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!newsfeed.eweka.nl!eweka.nl!feeder3.eweka.nl!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail
Return-Path <ralf@systemexit.de>
X-Original-To python-announce-list@python.org
Delivered-To python-announce-list@mail.python.org
X-Spam-Status OK 0.001
X-Spam-Evidence '*H*': 1.00; '*S*': 0.00; 'bug': 0.02; 'python.': 0.04; 'concurrent': 0.04; 'fixes': 0.05; 'compiler': 0.07; 'url:pypi': 0.08; 'distutils': 0.09; 'url:github': 0.09; '-----------': 0.15; 'centos': 0.16; 'coroutines': 0.16; 'ralf': 0.16; 'rhel': 0.16; 'workaround': 0.16; 'subject:] ': 0.18; 'received:internal': 0.18; 'cheers': 0.23; 'received:10.202': 0.23; 'received:10.202.2': 0.23; 'received:66.111': 0.23; 'received:66.111.4': 0.23; 'received:messagingengine.com': 0.23; 'fix': 0.25; 'module': 0.26; 'code': 0.26; 'lists': 0.28; 'installation': 0.30; 'changes': 0.30; 'version': 0.32; 'hosted': 0.32; 'implement': 0.32; 'header:User-Agent:1': 0.33; 'it?': 0.33; 'file': 0.34; 'received:84': 0.34; 'hi,': 0.34; 'certain': 0.34; 'to:addr:python-list': 0.35; 'subject:[': 0.35; 'url:python': 0.35; 'install': 0.35; 'to:addr:python-announce-list': 0.37; 'url:org': 0.39; 'received:de': 0.39; 'plain': 0.39; 'to:addr:python.org': 0.40; 'release': 0.40; 'here:': 0.67; 'to:no real name:2**2': 0.68; '[3]': 0.73; 'news': 0.73
DKIM-Signature v=1; a=rsa-sha1; c=relaxed/relaxed; d=systemexit.de; h= from:to:subject:date:message-id:mime-version:content-type; s= mesmtp; bh=QlE77M/tTXS/MngRia65ytpKkUs=; b=AS4rznm9wl/ofBuzuW0XZ 5q8ddK+CiQ+Y59rnOXkE2+owPAVdNURyiZSfi2Zz7cFMKlDdX5CibQXYmcrLArAl qXjVLeVUBDHIn9HpQXQgiQdurMUbJ9zEuXXzsX6RIrHZHh4qMhEON7S6PcxtyS8K ScJSpbnbgJLVpypLU8PmrU=
DKIM-Signature v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=from:to:subject:date:message-id :mime-version:content-type; s=smtpout; bh=QlE77M/tTXS/MngRia65yt pKkUs=; b=jLckd093ujS3Y9f40760juQZb9//C6l6hu83NEGMRkop1fItdaiMtH caDUh7BBwPHz9HjqxrIjFvjsoutGkmEyTRM0q7hgZbr5OV9rb4xQj+lU3PnnNffL 4BLGD5PO9GYbZ8OqaPnz4ZqEWVET8yfgz53J0M4i/0oAy+aiaSlDo=
X-Sasl-enc 9L/a8fisBJvKXPjdau7Vmb6+HL4/p9Gi/B77/i83uDno 1328993020
From Ralf Schmitt <ralf@systemexit.de>
To python-announce-list@python.org, python-list@python.org, gevent@googlegroups.com, eventletdev@lists.secondlife.com
Subject [ANNOUNCE] greenlet 0.3.4
Date Sat, 11 Feb 2012 21:44:02 +0100
User-Agent Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.93 (gnu/linux)
MIME-Version 1.0
Content-Type text/plain
X-Mailman-Approved-At Sun, 12 Feb 2012 17:15:32 +0100
X-BeenThere python-announce-list@python.org
X-Mailman-Version 2.1.12
Precedence list
Reply-To python-list@python.org
List-Id Announcement-only list for the Python programming language <python-announce-list.python.org>
List-Unsubscribe <http://mail.python.org/mailman/options/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-announce-list>
List-Post <mailto:python-announce-list@python.org>
List-Help <mailto:python-announce-list-request@python.org?subject=help>
List-Subscribe <http://mail.python.org/mailman/listinfo/python-announce-list>, <mailto:python-announce-list-request@python.org?subject=subscribe>
Approved python-announce-list@python.org
Newsgroups comp.lang.python.announce
Message-ID <mailman.5728.1329063333.27778.python-announce-list@python.org> (permalink)
Lines 37
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1329063333 news.xs4all.nl 6988 [2001:888:2000:d::a6]:60103
X-Complaints-To abuse@xs4all.nl
Xref x330-a1.tempe.blueboxinc.net comp.lang.python.announce:512

Show key headers only | View raw


Hi,

I have uploaded greenlet 0.3.4 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://greenlet.readthedocs.org

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


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

* Use plain distutils for install command, this fixes installation of
  the greenlet.h header.
* Enhanced arm32 support
* Fix support for Linux/S390 zSeries
* Workaround compiler bug on RHEL 3 / CentOS 3


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

-- 
Cheers
Ralf Schmitt

Back to comp.lang.python.announce | Previous | Next | Find similar | Unroll thread


Thread

[ANNOUNCE] greenlet 0.3.4 Ralf Schmitt <ralf@systemexit.de> - 2012-02-11 21:44 +0100

csiph-web