Path: csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder2.hal-mli.net!newsfeed.xs4all.nl!newsfeed2.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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python.': 0.02; 'url:pypi': 0.03; '-----------': 0.05; 'received:internal': 0.09; 'url:github': 0.09; 'cheers': 0.12; 'changes': 0.15; '0.4.1': 0.16; 'concurrent': 0.16; 'coroutines': 0.16; 'locations.': 0.16; 'ralf': 0.16; 'received:10.202': 0.16; 'received:10.202.2': 0.16; 'received:66.111': 0.16; 'received:66.111.4': 0.16; 'received:66.111.4.27': 0.16; 'received:mail.srv.osa': 0.16; 'received:messagingengine.com': 0.16; 'received:nyi.mail.srv.osa': 0.16; 'received:osa': 0.16; 'received:out3-smtp.messagingengine.com': 0.16; 'received:srv.osa': 0.16; 'segfault': 0.16; 'to:addr:python- announce-list': 0.16; 'x86_64': 0.16; 'fix': 0.17; 'module': 0.19; 'subject:] ': 0.20; 'memory': 0.22; 'header:User-Agent:1': 0.23; 'certain': 0.27; '[1]': 0.29; 'unix': 0.29; '[2]': 0.30; 'code': 0.31; 'crash': 0.31; 'disable': 0.31; 'gcc': 0.31; 'workaround': 0.31; 'file': 0.32; 'lists': 0.32; 'linux': 0.33; 'url:python': 0.33; 'received:66': 0.35; 'received:84': 0.35; 'add': 0.35; 'version': 0.36; 'thanks': 0.36; 'hi,': 0.36; 'url:org': 0.36; 'skip:- 20': 0.37; 'received:10': 0.37; 'implement': 0.38; 'to:addr:python-list': 0.38; 'subject:[': 0.39; 'hosted': 0.39; 'to:addr:python.org': 0.39; 'changed': 0.39; 'release': 0.40; 'here:': 0.62; 'to:2**2': 0.65; 'news': 0.67; 'to:no real name:2**2': 0.72; 'ppc': 0.84; '4.8': 0.91 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=41V8fhvNeTXnX3woaZP07A p8ylA=; b=DJFGjTxMZTJtSkATL39FQJ5qTKjHQEHOED3kvg8nzDgEnKCHolOLCK SkHoPCXgGZ7bDdeMEo8FhDSkmuW8CTZ3Hmck9yHdXxVVYcYBVQTUZnxlnmhAwV74 y9+WPnQTbQvezkWc5j/CiP9W2R1dGkM6hXpV3lTU0//lY5Nl+AHLw= X-Sasl-enc: zb70X8RMBKbN9VT7Qmx0stImgZV1DGc4GQuxmj8QgpE5 1370638029 From: Ralf Schmitt To: python-announce-list@python.org, python-list@python.org, gevent@googlegroups.com, eventletdev@lists.secondlife.com Subject: [ANNOUNCE] greenlet 0.4.1 Date: Fri, 07 Jun 2013 22:47:14 +0200 User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 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: 44 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1370638034 news.xs4all.nl 16006 [2001:888:2000:d::a6]:56482 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:47352 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