From: Alan K. <jyt...@xh...> - 2009-02-19 15:05:33
|
[Adam] > I am having trouble getting Jython to execute a very simple custom java class. [.. snip ..] > I am running Python 3.0.1. Are you running jython or are you running python 3.0.1? The two are fundamentally different. The only version of python that is at version 3.0.1 is cpython, which is implemented in C, and cannot be used to run java libraries (well, not easily anyway). Jython is a different implementation of the python language that runs on the Java Virtual Machine, and is just reaching version 2.5; version 3.0 of jython is some way in the future. If you can clarify which version you are using, it may be possible to resolve your problem. Alan. |