Reputation: 4822
I know Jython converts Python code into Java byte code, but are there any syntax changes between the two? and as a side question is Jython 3.x usable yet or is it still being ported?
Upvotes: 16
Views: 21135
Reputation: 1402
Check out these websites:
1) Differences between CPython and Jython
2) Jython FAQ
Upvotes: 1
Reputation: 143
There are 3 major implementations available for Python language. Jython is a java implementation, Cython is C implementation and IronPython is c# implementation. As far as Python language syntax is concerned, it remains consistent in all implementations. Regarding the last part of your question, I dont think Jython version 3.x is released or in use yet, probably you meant python 3.x - if so, yes it is.
Upvotes: 6
Reputation: 8313
In a nutshell
1*. Global Interpreter Lock, explained in Documentation Python documentation, chapter 8.1 (1)
For more information there is nothing better than visiting there on website
Upvotes: 18
Reputation: 60997
Jython is an implementation of the Python language. It is not a different language at all.
According to the Jython website, the latest stable version is currently 2.5.3b1, and the latest development version is 2.7a2. As far as I know, no one is currently working on an 3.x-compatible version of Jython.
Upvotes: 11