Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.002 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.04; 'concurrent': 0.04; 'url:pypi': 0.08; 'exceptions': 0.09; 'sphinx': 0.09; 'url:github': 0.09; 'c++': 0.12; 'subject:] ': 0.14; '-----------': 0.15; 'clobber': 0.16; 'coroutines': 0.16; 'openbsd': 0.16; 'ralf': 0.16; 'workaround': 0.16; 'x64': 0.16; '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; 'mode': 0.25; 'code': 0.25; 'module': 0.26; 'windows': 0.26; 'fix': 0.27; 'lists': 0.28; 'version': 0.32; 'hi,': 0.32; 'changes': 0.32; 'hosted': 0.32; 'implement': 0.32; 'subject:[': 0.33; 'header:User-Agent:1': 0.33; 'it?': 0.33; 'to:addr:python- list': 0.34; 'certain': 0.34; 'solaris': 0.34; 'test': 0.35; 'url:python': 0.36; 'file': 0.36; 'to:addr:python-announce-list': 0.37; 'problems': 0.37; 'received:de': 0.39; 'url:org': 0.39; 'to:addr:python.org': 0.40; 'url:net': 0.60; 'to:2**2': 0.61; 'order': 0.62; 'here:': 0.66; 'to:no real name:2**2': 0.69; '[3]': 0.73; 'news': 0.74 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=tH0DPDBgJOtgDDsYxm0v7MWk6As=; b=VwhYMpq+5H2I39p/XH7xR OLi9CaBZtOp3MEPeYqJgP9QGVkZhgC0NNvH1oCgjjdL12g9007hlYNwGmdmVcU8p TyqFoDK2CxGODlQbTIMu1e2GzzBnq0e2q1oXRyZUILRxNcuraSMaNEJP0IBuyC0a Ybtv0+39vR0sQ2N76yKAUQ= 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=tH0DPDBgJOtgDDsYxm0v7M Wk6As=; b=DiHfGhI4UVDbt4X6DGrfTX5dgWQxreMH/xtWh0IrWXx/WsvvtDZeBF K1WKwC+nMCOKPeDaWhhgeBwrYzJcdKjBnMHctfvpxseCBBvE48KGk8rYs9t4sEk5 u9P7Fesj0IpZ3iw9+ZNXJX2unAhpD6O8n3jTEDQpqdeTb/DBo+mCs= X-Sasl-enc: DF5FPv3FSMY0iw2eRgwZiNcV66DFNR/S08U5I25mteDR 1325858358 From: Ralf Schmitt To: python-announce-list@python.org, python-list@python.org, gevent@googlegroups.com, eventletdev@lists.secondlife.com Subject: [ANNOUNCE] greenlet 0.3.3 Date: Fri, 06 Jan 2012 14:59:14 +0100 User-Agent: Gnus/5.110018 (No Gnus v0.18) Emacs/24.0.92 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 39 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1325858368 news.xs4all.nl 6919 [2001:888:2000:d::a6]:56146 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:18600 Hi, I have uploaded greenlet 0.3.3 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.3 ------------------------ The NEWS file lists these changes for release 0.3.3: * Use sphinx to build documentation and publish it on greenlet.rtfd.org * Prevent segfaults on openbsd 4/i386 * Workaround gcc-4.0 not allowing to clobber rbx * Enhance test infrastructure * Fix possible compilation problems when including greenlet.h in C++ mode * Make the greenlet module work on x64 windows * Add a test for greenlet C++ exceptions * Fix compilation on Solaris with SunStudio [1] http://opensource.hyves.org/concurrence/ [2] http://eventlet.net/ [3] http://www.gevent.org/ -- Cheers Ralf Schmitt