What are some strategies to write python code that works in CPython, Jython and IronPython - Stack Overflow most recent 30 from stackoverflow.com2009-12-03T17:27:27Zhttp://stackoverflow.com/feeds/question/53543http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/53543/what-are-some-strategies-to-write-python-code-that-works-in-cpython-jython-and-i9What are some strategies to write python code that works in CPython, Jython and IronPythonminty2008-09-10T07:04:43Z2009-03-12T06:11:27Z
<p>Having tries to target two of these environments at the same time I can safely say the if you have to use a database etc. you end up having to write unique code for that environment. Have you got a great way to handle this situation?</p>
http://stackoverflow.com/questions/53543/what-are-some-strategies-to-write-python-code-that-works-in-cpython-jython-and-i/53549#5354910Answer by Daren Thomas for What are some strategies to write python code that works in CPython, Jython and IronPythonDaren Thomas2008-09-10T07:07:59Z2008-09-10T07:07:59Z<p>If you <em>do</em> find you need to write unique code for an environment, use pythons </p>
<pre><code>import mymodule_jython as mymodule
import mymodule_cpython as mymodule
</code></pre>
<p>have this stuff in a simple module (''module_importer''?) and write your code like this:</p>
<pre><code>from module_importer import mymodule
</code></pre>
<p>This way, all you need to do is alter <code>module_importer.py</code> per platform.</p>
http://stackoverflow.com/questions/53543/what-are-some-strategies-to-write-python-code-that-works-in-cpython-jython-and-i/55312#553128Answer by cdleary for What are some strategies to write python code that works in CPython, Jython and IronPythoncdleary2008-09-10T21:00:04Z2008-09-10T21:00:04Z<p>@<a href="#53549" rel="nofollow">Daren Thomas</a>: I agree, but you should use the <a href="http://docs.python.org/dev/library/platform.html#platform.python_implementation" rel="nofollow">platform module</a> to determine which interpreter you're running.</p>
http://stackoverflow.com/questions/53543/what-are-some-strategies-to-write-python-code-that-works-in-cpython-jython-and-i/199275#1992750Answer by CyberED for What are some strategies to write python code that works in CPython, Jython and IronPythonCyberED2008-10-13T22:33:17Z2008-10-13T22:33:17Z<p>I write code for CPython and IronPython but tip should work for Jython as well.</p>
<p>Basically, I write all the platform specific code in separate modules/packages and then import the appropriate one based on platform I'm running on. (see cdleary's comment above)</p>
<p>This is especially important when it comes to the differences between the SQLite implementations and if you are implementing any GUI code.</p>
http://stackoverflow.com/questions/53543/what-are-some-strategies-to-write-python-code-that-works-in-cpython-jython-and-i/342835#3428351Answer by Jason Baker for What are some strategies to write python code that works in CPython, Jython and IronPythonJason Baker2008-12-05T03:35:43Z2008-12-05T03:35:43Z<p>The #1 thing IMO: <strong>Focus on thread safety</strong>. CPython's GIL makes writing threadsafe code easy because only one thread can access the interpreter at a time. IronPython and Jython are a little less hand-holding though.</p>
http://stackoverflow.com/questions/53543/what-are-some-strategies-to-write-python-code-that-works-in-cpython-jython-and-i/342845#3428450Answer by Oscar Reyes for What are some strategies to write python code that works in CPython, Jython and IronPythonOscar Reyes2008-12-05T03:41:37Z2008-12-05T03:41:37Z<p>I'm pretty sure you already know this but unfortunately Jython <a href="http://www.jython.org/Project/userfaq.html#is-jython-the-same-language-as-python" rel="nofollow">can't load c extension modules.</a></p>
http://stackoverflow.com/questions/53543/what-are-some-strategies-to-write-python-code-that-works-in-cpython-jython-and-i/637549#6375490Answer by Arafangion for What are some strategies to write python code that works in CPython, Jython and IronPythonArafangion2009-03-12T06:11:27Z2009-03-12T06:11:27Z<p>There are two <em>major</em> issues at play here...</p>
<p>Firstly, to my knowledge, only CPython has RAII - you have to close your own resources in Jython, Ironpython, etc.</p>
<p>And Secondly, as has been mentioned, is thread safety.</p>