Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder1.enfer-du-nord.net!border1.nntp.ams2.giganews.com!border3.nntp.ams.giganews.com!border1.nntp.ams.giganews.com!nntp.giganews.com!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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'python,': 0.02; 'subject:Python': 0.05; 'compiler': 0.05; 'cpython': 0.05; 'c++,': 0.07; 'used.': 0.07; 'python': 0.09; 'experimental': 0.09; 'fork': 0.09; 'optimizing': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'runtime': 0.09; 'stackless': 0.09; 'subset': 0.09; 'url:github': 0.09; 'itself.': 0.11; 'static': 0.13; 'stack': 0.15; 'ecosystem': 0.16; 'from:addr:behnel.de': 0.16; 'from:addr:stefan_ml': 0.16; 'from:name:stefan behnel': 0.16; 'java.': 0.16; 'jython,': 0.16; 'message- id:@dough.gmane.org': 0.16; 'python",': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'url:stackless': 0.16; 'stefan': 0.17; 'widely': 0.17; 'written': 0.20; 'subject:skip:i 10': 0.22; 'allows': 0.25; 'header:In-Reply- To:1': 0.25; 'header:User-Agent:1': 0.26; 'common': 0.26; 'url:wiki': 0.26; '2.6': 0.27; 'header:X-Complaints-To:1': 0.28; 'extensively': 0.29; 'restricted': 0.29; 'steven': 0.29; 'url:wikipedia': 0.29; 'manual': 0.29; 'url:code': 0.29; 'that.': 0.30; 'code': 0.31; 'received:84': 0.32; 'to:addr:python-list': 0.33; 'another': 0.33; 'version': 0.34; 'bigger': 0.35; 'received:org': 0.36; 'but': 0.36; 'url:org': 0.36; 'uses': 0.37; 'subject:: ': 0.38; 'behind': 0.38; 'supports': 0.38; 'url:en': 0.38; 'instead': 0.39; 'performance': 0.39; 'to:addr:python.org': 0.39; 'subject:-': 0.40; 'header:Received:5': 0.40; 'easy': 0.60; 'most': 0.61; 'url:p': 0.63; 'here': 0.65; 'believe,': 0.84; 'compiles': 0.84; 'lightweight': 0.84; 'received:arcor-ip.net': 0.84; 'received:pools.arcor-ip.net': 0.84; 'url:overview': 0.84 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Stefan Behnel Subject: Re: On-topic: alternate Python implementations Date: Sat, 04 Aug 2012 08:40:16 +0200 References: <501cbdf8$0$29978$c3e8da3$5496439d@news.astraweb.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Gmane-NNTP-Posting-Host: dslb-084-056-025-029.pools.arcor-ip.net User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:14.0) Gecko/20120714 Thunderbird/14.0 In-Reply-To: <501cbdf8$0$29978$c3e8da3$5496439d@news.astraweb.com> 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: 61 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1344062430 news.xs4all.nl 6926 [2001:888:2000:d::a6]:56206 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:26474 Steven D'Aprano, 04.08.2012 08:15: > Most people are aware, if only vaguely, of the big Four Python > implementations: > > CPython, or just Python, the reference implementation written in C. > IronPython, written in .NET. > Jython, written in Java. > PyPy, the optimizing implementation written in Python (actually, it's > written in a subset of Python, RPython). > > But the Python ecosystem is a lot bigger than just those four. Here are > just a few other implementations that you might be interested in: > > > Stackless - the "forgetten Python", Stackless is, I believe, the oldest > implementation behind only CPython itself. It's a fork of CPython with > the calling stack removed and fast and lightweight microthreads, and is > used extensively in EVE Online. > > http://www.stackless.com/ > > > Nuitka - optimising Python compiler written in C++, supports Python 2.6 > and 2.7, claims to be up to twice as fast as CPython. > > http://nuitka.net/pages/overview.html > > > WPython - another optimizing version of Python with wordcodes instead of > bytecodes. > > http://code.google.com/p/wpython/ > > > CLPython, an implementation of Python written in Common Lisp. > > http://common-lisp.net/project/clpython/ > > > CapPython is an experimental restricted version of Python with > capabilities. > > http://plash.beasts.org/wiki/CapPython > http://en.wikipedia.org/wiki/Object-capability_model > > > Berp - a compiler which works by translating Python to Haskell and > compiling that. > > https://github.com/bjpop/berp/wiki And not to forget Cython, which is the only static Python compiler that is widely used. Compiles and optimises Python to C code that uses the CPython runtime and allows for easy manual optimisations to get C-like performance out of it. http://cython.org/ Stefan