What are some strategies to write python code that works in CPython, Jython and IronPython - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T17:27:27Z http://stackoverflow.com/feeds/question/53543 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/53543/what-are-some-strategies-to-write-python-code-that-works-in-cpython-jython-and-i 9 What are some strategies to write python code that works in CPython, Jython and IronPython minty 2008-09-10T07:04:43Z 2009-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#53549 10 Answer by Daren Thomas for What are some strategies to write python code that works in CPython, Jython and IronPython Daren Thomas 2008-09-10T07:07:59Z 2008-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#55312 8 Answer by cdleary for What are some strategies to write python code that works in CPython, Jython and IronPython cdleary 2008-09-10T21:00:04Z 2008-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#199275 0 Answer by CyberED for What are some strategies to write python code that works in CPython, Jython and IronPython CyberED 2008-10-13T22:33:17Z 2008-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#342835 1 Answer by Jason Baker for What are some strategies to write python code that works in CPython, Jython and IronPython Jason Baker 2008-12-05T03:35:43Z 2008-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#342845 0 Answer by Oscar Reyes for What are some strategies to write python code that works in CPython, Jython and IronPython Oscar Reyes 2008-12-05T03:41:37Z 2008-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#637549 0 Answer by Arafangion for What are some strategies to write python code that works in CPython, Jython and IronPython Arafangion 2009-03-12T06:11:27Z 2009-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>