From what I have seen and read on the blogs PyPy is a very ambitious project. What are some advantages it will bring to the table over its siblings (CPython, Jython, and IronPython)? Is it speed, cross-platform compatibility (including mobile platforms), the ability to use c-extensions without the GIL, or is this more of a technical exercise on what can be done?
feedback
|
|
PyPy is really two projects:
These two projects allow for many things.
So there are really a lot of reasons for PyPy to be exciting, and it is finally starting to live up to all its promises. | |||||||||||
feedback
|
|
This is a link to presentation one of the PyPy authors gave at PyCon 2009. It is very informative. | |||
|
feedback
|
|
The most important feature is of course the JIT compiler. In CPython files are compiled to bytecode ( | |||||||||||||
feedback
|
|
I recently read this blog post post about this by Alex Gaynor and although it does not explicitly answer the OP's question, it does make a pretty convincing argument that Pypy is an exciting area of Python that may shorten those 5-10 years mentioned by OP. | |||
|
feedback
|
|
In case that Python gets a real JIT I think it's going to be as fast as any other implementation. The advantage is that it's much easier to implement new features. One can see this today by observing the library. Often modules are written in Python first and then translated into C. | |||
|
feedback
|