Migrating from CPython to Jython

Posted by itsadok on Stack Overflow See other posts from Stack Overflow or by itsadok
Published on 2009-01-07T15:46:10Z Indexed on 2010/04/05 13:13 UTC
Read the original article Hit count: 580

I'm considering moving my code (around 30K LOC) from CPython to Jython, so that I could have better integration with my java code.

Is there a checklist or a guide I should look at, to help my with the migration? Does anyone have experience with doing something similar?

From reading the Jython site, most of the problems seem too obscure to bother me.

I did notice that:

  • thread safety is an issue
  • Unicode support seems to be quite different, which may be a problem for me
  • mysqldb doesn't work and needs to be replaced with zxJDBC

Anything else?

Related question: What are some strategies to write python code that works in CPython, Jython and IronPython

© Stack Overflow or respective owner

Related posts about python

Related posts about jython