Reputation: 19505
i.e. jython(or other implementation) version x.y is roughly equivalent to cpython version a.b
Please list version of alternative implementation, and feel free to list multiple versions
so this list will still be useful in the future. If possible list any large incompatibilities
(with cpython) for each version excluding things like c interface and relying or reference counting.
Upvotes: 1
Views: 293
Reputation: 53879
The most popular alternative implementations are IronPython, Jython, PyPy and Stackless Python.
Jython currently implements Python 2.5.2 support for 2.6 is on their roadmap.
IronPython implements Python 2.7.1.
PyPy implements Python 2.7.1.
Stackless Python supports 2.7.1 and 3.2 currently.
They all do a good job implementing the core language, but have differing support for the standard library.
Upvotes: 3