Jump to content

PyPy: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Stefanor (talk | contribs)
PyPy 2.3 released on Friday
Line 64: Line 64:
PyPy project members entitled: "PYJIT - a fast and flexible toolkit for dynamic programming languages based on PyPy". Eurostars funding lasted until August 2011.<ref>{{Cite web| title = Project Page on Eureka Network | url = http://www.eurekanetwork.org/project/-/id/4791}}</ref>
PyPy project members entitled: "PYJIT - a fast and flexible toolkit for dynamic programming languages based on PyPy". Eurostars funding lasted until August 2011.<ref>{{Cite web| title = Project Page on Eureka Network | url = http://www.eurekanetwork.org/project/-/id/4791}}</ref>
At [[PyCon]] US 2011, the [[Python Software Foundation]] provided a $10,000 grant for PyPy to continue work on performance and compatibility with newer versions of the language.<ref>{{Cite web|title=A thank you to the PSF|url=http://morepypy.blogspot.com/2011/03/thank-you-to-psf.html}}</ref>
At [[PyCon]] US 2011, the [[Python Software Foundation]] provided a $10,000 grant for PyPy to continue work on performance and compatibility with newer versions of the language.<ref>{{Cite web|title=A thank you to the PSF|url=http://morepypy.blogspot.com/2011/03/thank-you-to-psf.html}}</ref>
The port to ARM architecture was sponsored by the [[Raspberry Pi Foundation]].<ref name=lwn2013 />
The port to ARM architecture was sponsored in part by the [[Raspberry Pi Foundation]].<ref name=lwn2013 />


The PyPy project also accepts donations through its status blog pages.<ref>{{Cite web| title = PyPy Status Blog: Oh, and btw: PyPy gets funding through "Eurostars"| url = http://morepypy.blogspot.com/2010/12/oh-and-btw-pypy-gets-funding-through.html}}</ref> There are three funding projects currently in progress: Python 3 version compatibility, built-in optimized [[NumPy]] support for numerical calculations and [[software transactional memory]] support to allow better parallelism.<ref name=lwn2013 />
The PyPy project also accepts donations through its status blog pages.<ref>{{Cite web| title = PyPy Status Blog: Oh, and btw: PyPy gets funding through "Eurostars"| url = http://morepypy.blogspot.com/2010/12/oh-and-btw-pypy-gets-funding-through.html}}</ref> There are three funding projects currently in progress: Python 3 version compatibility, built-in optimized [[NumPy]] support for numerical calculations and [[software transactional memory]] support to allow better parallelism.<ref name=lwn2013 />

Revision as of 09:04, 23 May 2014

Template:Distinguish2

Stable release
2.3 / 9 May 2014; 10 years ago (2014-05-09)
Repository
Written inRPython
Operating systemCross-platform
TypePython interpreter and compiler toolchain
LicenseMIT License
Websitepypy.org

PyPy is a Python interpreter and just-in-time compiler. PyPy focuses on speed, efficiency and compatibility with the original CPython interpreter.[1]

PyPy started out as a Python interpreter written in the Python language itself. Current PyPy versions are translated from RPython to C code and compiled. The PyPy JIT (short for "Just In Time") compiler is capable of turning Python code into machine code at run time.

Details and motivation

PyPy was conceived as an implementation of Python written in a programming language that is similar to Python. This makes it easy to identify areas where it can be improved and makes PyPy more flexible and easier to experiment with than CPython.[citation needed]

PyPy aims to provide a common translation and support framework for producing implementations of dynamic languages, emphasizing a clean separation between language specification and implementation aspects. It also aims to provide a compliant, flexible and fast implementation of the Python programming language using the above framework to enable new advanced features without having to encode low level details into it.[1][2]

RPython

The PyPy interpreter itself is written in a restricted subset of Python, called RPython (Restricted Python).[3] RPython puts some constraints on the Python language so that a variable's type can be inferred at compile time.[4]

The PyPy project has developed a tool chain that analyzes RPython code and translates it into C code, which is then compiled to produce a native interpreter. It also allows for pluggable garbage collectors as well as optionally enabling Stackless Python features. Finally it includes a just-in-time (JIT) generator which builds a just-in-time compiler into the interpreter, given a few annotations in the interpreter source code. The generated JIT compiler is a tracing JIT.[5]

Project status

The latest PyPy release, PyPy 2.3, is CPython 2.7.6 compatible. It has JIT compilation support on 32-bit/64-bit x86 and ARM processors.[6] It's tested nightly on Windows, Linux, OpenBSD and Mac OS X. PyPy is able to run pure Python software that does not rely on implementation-specific features.[7]

There is a compatibility layer for CPython C API extensions called CPyExt, but is incomplete and experimental. The preferred way of interfacing with C shared libraries is through the built-in CFFI or ctypes libraries.

History

PyPy is a followup to the Psyco project, a just-in-time specializing compiler for Python, developed by Armin Rigo between 2002 and 2010. PyPy's aim is to have a just-in-time specializing compiler with scope, which was not available for Psyco.[clarification needed] Initially, the RPython could also be compiled into Java bytecode, CIL and JavaScript, but these backends were removed due to lack of interest.

PyPy began as a research and development-oriented project. Reaching a mature state of development and an official 1.0 release in mid-2007, its next focus was on releasing a production-ready version with more CPython compatibility. Many of PyPy's changes have been made during coding sprints.

As of late 2008, PyPy was able to run some popular Python libraries like Pylons,[8] Pyglet,[9] Nevow[10] and Django.[11]

In March 2010, PyPy 1.2 was released, focusing on speed. It included a working just-in-time compiler, but was not advised to be run in production environments. Along with the 1.2 release, the website was redesigned and a new PyPy speed center for tracking progress was brought up.[12]

In April 2011, PyPy version 1.5 was released, which reached compatibility with CPython 2.7.

On May 9, 2013, PyPy 2.0 was released, which introduced alpha-quality support for JIT compilation on ARMv6 and ARMv7 JIT, and included CFFI in the standard library.[6]

Funding

PyPy was funded by the European Union as a Specific Targeted Research Project[13] between December 2004 and March 2007. In June 2008, PyPy announced funding as part of the Google Open Source programs, and has agreed to focus on making PyPy more compatible with CPython. In 2009 Eurostars, a European Union funding agency specially focused on SMEs,[14] accepted a proposal from PyPy project members entitled: "PYJIT - a fast and flexible toolkit for dynamic programming languages based on PyPy". Eurostars funding lasted until August 2011.[15] At PyCon US 2011, the Python Software Foundation provided a $10,000 grant for PyPy to continue work on performance and compatibility with newer versions of the language.[16] The port to ARM architecture was sponsored in part by the Raspberry Pi Foundation.[6]

The PyPy project also accepts donations through its status blog pages.[17] There are three funding projects currently in progress: Python 3 version compatibility, built-in optimized NumPy support for numerical calculations and software transactional memory support to allow better parallelism.[6]

See also

Notes

  1. ^ a b Samuele Pedroni (March 2007). "PyPy - Goals and Architecture Overview".
  2. ^ "PyPy - Goals and Architecture Overview - Mission Statement". Retrieved 11 October 2013.
  3. ^ http://doc.pypy.org/en/latest/coding-guide.html#id1
  4. ^ "It is a proper subset of Python, restricted in a way that enables easy analysis and efficient code generation", Ancona et al., 2007.
  5. ^ Bolz et al., 2009
  6. ^ a b c d Jake Edge (15 May 2013). "A look at the PyPy 2.0 release". LWN.net.
  7. ^ "PyPy - Python compatibility".
  8. ^ "Running pylons on top of PyPy".
  9. ^ "Running Pyglet on top of PyPy".
  10. ^ "Running Nevow on top of PyPy".
  11. ^ "PyPy runs unmodified django 1.0 beta".
  12. ^ Corbet, Jonathan (19 May 2012). "PyPy: the other new compiler project". LWN.net.
  13. ^ "EU Community Research and Development Information Service Entry".
  14. ^ "Eurostars - Aim Higher".
  15. ^ "Project Page on Eureka Network".
  16. ^ "A thank you to the PSF".
  17. ^ "PyPy Status Blog: Oh, and btw: PyPy gets funding through "Eurostars"".
  18. ^ tomykaira (July 2012). "Partial Evaluation, Futamura Projection And Their Applications".

References