active questions tagged jython - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:48:18Z http://stackoverflow.com/feeds/tag/jython http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1810289/what-is-the-easiest-way-to-debug-embedded-jython-in-eclipse 0 What is the easiest way to debug embedded jython in eclipse? rapto 2009-11-27T19:13:56Z 2009-11-27T19:13:56Z <p>I know I can debug embedded (launched from a Java program) Jython with a remote Pydev debugger. Is there a simpler way to do it?</p> http://stackoverflow.com/questions/1260864/howto-multithreaded-jython-scripts-running-from-java 4 Howto multithreaded jython scripts running from java? nEJC 2009-08-11T14:50:50Z 2009-11-27T08:30:26Z <p>I'm constructing a framework in Java that will listen for events and then process them in Jython. Different event types will be sent to different scripts. </p> <p>Since jython takes quite some time to compile the script when PythonInterpreter.exec() is called, I will have to pre-compile the scripts. I'm doing it the following way:</p> <pre><code>// initialize the script as string (would load it from file in final version) String script = "print 'foo'"; // get the compiled code object PyCode compiled = org.python.core.__builtin__.compile( script, "&lt;&gt;", "exec" ); </code></pre> <p>The PyCode compiled object would be pushed to repository and used as events come in</p> <pre><code>PythonInterpreter pi = new PythonInterpreter(); pi.set( "variable_1", "value_1"); pi.set( "variable_x", "value_x"); pi.exec( compiled ); </code></pre> <p>Now for my conundrum - it might happen that there are multiple events of certain type happening at the same time - thus multiple instances of script running at the same time.</p> <p>Almost all scripts would probably remain short-lived - up to 100 lines, no loops. Number and frequency is completely random (user generated events) and could be from 0 to about 200 per second per event type.</p> <p>What would the best way to do it be? I'm looking at a few possibilities:</p> <ol> <li>use synchronization at trigger event point - this would prevent multiple instances of same script but also events wouldn't be processed as quickly as they should be</li> <li>create a pool of same type scripts somehow populated by cloning original PyCode object - the biggest problem would probably be optimizing pool sizes</li> <li>dynamically clone the script object from the parent whenever needed and then discard it when exec() finishes - this way the lag is removed from compile but it is still present in clone method</li> </ol> <p>Probably the combination of number 2 and 3 would be the best - creating dynamic pool sizes?</p> <p>So, any thoughts? ;)</p> http://stackoverflow.com/questions/1800648/alternative-to-interruptmain-in-jython 0 Alternative to interrupt_main() in Jython? unknown (google) 2009-11-25T23:24:56Z 2009-11-25T23:37:14Z <p>Whenever the code thread.interrupt_main() is used in Jython it doesn't actually interrupt the main thread. Any ideas as to alternatives? Code is below:</p> <pre><code>import threading import dummy_thread as _thread def exitFunct(): _thread.interrupt_main() t = threading.Timer(60.0, exitFunct) t.start() for i in range(1, 3000): print i </code></pre> http://stackoverflow.com/questions/1798970/jython-how-to-stop-script-from-thread 0 Jython How to stop script from thread? JJ 2009-11-25T18:22:46Z 2009-11-25T18:43:01Z <p>I'm looking for some exit code that will be run from a thread but will be able to kill the main script. It's in Jython but I can't use java.lang.System.exit() because I still want the Java app I'm in to run, and sys.exit() isn't working. Ideally I would like to output a message then exit. My code uses the threading.Timer function to run a function after a certain period of time. Here I'm using it to end a for loop that is executing for longer than 1 sec. Here is my code:</p> <pre><code>import threading def exitFunct(): #exit code here t = threading.Timer(1.0, exitFunct) t.start() for i in range(1, 2000): print i </code></pre> http://stackoverflow.com/questions/1791635/how-to-kill-main-thread-from-sub-thread-in-jython 0 How to kill main thread from sub thread in Jython JeffGoetz 2009-11-24T17:29:07Z 2009-11-24T20:26:56Z <p>I have a script that creates a thread which after 60 seconds (this thread) needs to kill the main thread. I`m not sure what command I can use to kill the main thread. I'm using Jython 2.5.1 and Thread.interrupt_main doesn't work. </p> <p>Here is the code:</p> <pre><code>import threading def exitFunct(): #exit code here t = threading.Timer(60.0, exitFunct) t.start() for i in range(1, 3000): print i </code></pre> http://stackoverflow.com/questions/1467827/how-do-i-make-pydev-jython-to-startup-faster-when-running-a-script 1 How do i make Pydev + jython to startup faster when running a script? yaniv 2009-09-23T18:31:32Z 2009-11-24T15:07:45Z <p>Hi, i'm working with pydev + jython.great ide , but quite slow when i try to run a jython program. this is probably something due to libraries load time.</p> <p>What can i do to speed it up ?</p> <p>Thanks , yaniv</p> http://stackoverflow.com/questions/1765802/using-jython-from-eclipse-plugin 1 Using Jython From Eclipse Plugin AdamC 2009-11-19T19:13:32Z 2009-11-20T19:37:14Z <p>I am having a tough time getting jython to work properly when run from an Eclipse plugin. I have a simple object factory that loads a python module conforming to a Java Interface. All of this works fine in standalone mode. However, when I package this as an eclipse plugin, I get a different error based on a few variables:</p> <p>Given that my java package is com.foo.</p> <p>1) If I run without modifying any paths, I get: "No module named foo"</p> <p>2) If I then add my java jars to the sys.path using:</p> <pre><code>PythonInterpreter interp = new PythonInterpreter(null, new PySystemState()); PySystemState sys = Py.getSystemState(); sys.path.append(new PyString("myjar...")); </code></pre> <p>I get:</p> <p>a) My python module's constructor gets called (print in the constr shows up)<br> b) I get a PySingleton returned from the call to <strong>tojava</strong>. The name field is "Error".</p> <p>3) At this point, I try to make the classpath exactly the same in Eclipse as Standalone, so I add my jars to the classpath at runtime just before the python interpreter is called.</p> <p>I get my favorite error message: SystemError: Automatic proxy initialization should only occur on proxy classes</p> <p>This one is driving me crazy. I was impressed with how fast I got this going in standalone mode. Should running under Eclipse be that much different? I believe it should only be a matter of the classpath, but so far, that doesn't seem to be it.</p> http://stackoverflow.com/questions/1750392/jython-2-1-getattr 0 Jython 2.1 __getattr__ DChrome 2009-11-17T17:20:03Z 2009-11-17T18:26:30Z <p>I am trying to implement a wrapper/proxy class for a java object (baseClient) in jython v2.1. Everything seems to be working ok except when the following statement is encountered:</p> <pre><code>if __client != None # __client is an instance of the ClientProxy class </code></pre> <p><code>raise AttributeError(attr)</code> is called in <code>__getattr__()</code>, because <code>self.__baseClient</code> doesn't have <code>__ne__</code> attribute. It's important to mention that I cannot upgrade because jython is a part of a system. Is there a way to get around this issue?</p> <pre><code>class ClientProxy: def __init__(self, baseClient): self.__baseClient = baseClient self.__initialised = 1 def __getattr__(self, attr): if not self.__dict__.has_key('_ClientProxy__initialised'): raise AttributeError(attr) else: if hasattr(self.__baseClient, attr): return getattr(self.__baseClient, attr) else: raise AttributeError(attr) def __setattr__(self, attr, val): if not self.__dict__.has_key('_ClientProxy__initialised'): self.__dict__[attr] = val return if hasattr(self.__baseClient, attr): self.__baseClient.__setattr__(attr, val) else: self.__dict__[attr] = val </code></pre> <p>Thanks a lot!</p> http://stackoverflow.com/questions/1732594/developing-eclipse-plugins-without-java 2 Developing Eclipse plugins without Java Imran 2009-11-13T23:44:35Z 2009-11-17T13:45:34Z <p>Is it possible to create Eclipse plugins/program Eclipse RCP apps without Java? (preferably in Jython)</p> http://stackoverflow.com/questions/1730885/how-can-i-add-jars-dynamically-to-jython-inside-script 1 How can I add jars dynamically to jython, inside script? gregturn 2009-11-13T17:54:51Z 2009-11-14T13:29:23Z <p>I am writing a package in python that talks to an ldap server. I want it to work in CPython and Jython. To get it to work with CPython, I have successfully coded against python-ldap. However, to get it working with Jython, I must use a java jar.</p> <p>How can I distribute the jar file with my package, so that if it can "import java", it knows its jython, and dynamically adds the java jar to the path, and utilizies it. However, if that fails, it knows its CPython and uses the python-ldap libraries.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1719262/jython-exception-handling-within-loops 1 Jython exception handling within loops bguiz 2009-11-12T01:21:11Z 2009-11-12T12:26:10Z <p>Hi,</p> <p>I am using Marathon 2.0b4 to automate tests for an application.</p> <p>A shortcoming of <code>wait_p</code>, one of the script elements provided by Marathon, is that its default timeout is <strong>hardcoded</strong> to be 60 seconds. I needed a larger timeout due to the long loading times in my application.<br> [I considered patching Marathon, but didn't want to maintain parallel versions etc., so figured that a better solution would actually be a workaround at the test script level.]</p> <pre><code>def wait_p_long(times, compID_name, ppty_name, ppty_value, compID_cell=None): from marathon.playback import * """Wrapper around wait_p which takes exactly the same parameters as wait_p, except that an extra first parameter is used to specify the number of times wait_p is called""" for i in range(1, times): try: wait_p(compID_name, ppty_name, ppty_value, compID_cell) except: if (i &lt; times): print "wait_p failed, trying again" else: raise </code></pre> <p><code>wait_p</code> is short for &quot;wait property&quot;, and it takes in 3 compulsory and one optional argument (the argument's names are rather self-explanatory), and what it does is wait for a speicifed property of the specified component to be equals to the specified value.</p> <p>What the above method (Jython) intends to do is take one extra parameter, <code>times</code>, which specifies the number of times to attempt <code>wait_p</code>, suppressing the exceptions up until the last try.</p> <p>However, this method isn't working for me, and I am afraid there might be some syntactical or logical error somewhere in there. Any comments from python / jython gurus out there?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1681640/set-was-process-definition-environment-entries-using-jython 0 Set WAS Process Definition Environment Entries using Jython? lemotdit 2009-11-05T16:12:03Z 2009-11-11T11:09:26Z <p>Is it possible to add custom Process Definition environment entry in a WebSphere Application Server using a jython script?</p> <p>I see that the existing properties in the server.xml are assigned auto-generated IDs, is it possible to retrieve those prop without knowing their ID?</p> <pre><code> &lt;environment xmi:id="Property_1248356598212" name="&lt;my_prop&gt;" value="&lt;my_value&gt;" required="true"/&gt; </code></pre> <p>WAS 6.1/i5</p> http://stackoverflow.com/questions/1681849/why-does-jython-refuse-to-find-my-java-package 0 Why does Jython refuse to find my Java package? MikeHoss 2009-11-05T16:38:04Z 2009-11-10T19:13:45Z <p>I know it's something silly, but for some reason Jython refuses to find javax.swing. I'm using Java 1.6.0_11. This is my start-up script:</p> <pre><code>@echo off "%JAVA_HOME%\bin\java" -Xmx1024M -classpath ".;c:\Projects\Jython2.5.1\jython.jar" org.python.util.jython </code></pre> <p>My output looks like:</p> <pre><code>Jython 2.5.1 (Release_2_5_1:6813, Sep 26 2009, 13:47:54) [Java HotSpot(TM) Client VM (Sun Microsystems Inc.)] on java1.6.0_10 Type "help", "copyright", "credits" or "license" for more information. &gt;&gt;&gt; import javax.swing Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; ImportError: No module named swing &gt;&gt;&gt; import javax &gt;&gt;&gt; dir(javax) ['__name__'] &gt;&gt;&gt; </code></pre> http://stackoverflow.com/questions/1702043/how-can-i-make-the-pydev-editor-selectively-ignore-errors 4 How can I make the PyDev editor selectively ignore errors? Pridkett 2009-11-09T16:14:56Z 2009-11-10T00:25:09Z <p>I'm using PyDev under Eclipse to write some Jython code. I've got numerous instances where I need to do something like this:</p> <pre><code>import com.work.project.component.client.Interface.ISubInterface as ISubInterface </code></pre> <p>The problem is that PyDev will always flag this as an error and say "Unresolved import: ISubInterface". The code works just fine, it's just that I'd rather not have these little white/red X-marks next to my code and have my Problems tab littered with these errors.</p> <p>Is there a way I can add a magic comment or something like that to the end of the line to make PyDev ignore the false error, similar to how you can sprinkle comments like "# pylint: disable-msg=E1101" to make PyLint ignore errors?</p> <p>Also, there's a possibility I'm just doing it wrong when it comes to using Java interfaces in Jython. In which case a little bit of guidance would be very much appreciated.</p> http://stackoverflow.com/questions/641985/rename-files-python-jython 2 Rename files, Python/Jython Eef 2009-03-13T09:48:05Z 2009-11-08T15:49:16Z <p>I have a directory full of files, some which have an ampersand in their names. I would like to rename all the files with ampersands and replace each ampersand with a plus (+). I am working with around 10k files. What would be the best method to do this?</p> http://stackoverflow.com/questions/271657/how-to-tell-if-a-string-is-base64-or-not 2 how to tell if a string is base64 or not. Setori 2008-11-07T09:54:34Z 2009-11-06T14:05:03Z <p>Hi guys</p> <p>I have many emails coming in from different sources. they all have attachments, many of them have attachment names in chinese, so these names are converted to base64 by their email clients.</p> <p>When I receive these emails, I wish to decode the name. but there are other names which are not base64. How can I differentiate whether a string is base64 or not, using the <strong>jython</strong> programming language?</p> <p>Ie. </p> <p>First attachment: </p> <pre><code>------=_NextPart_000_0091_01C940CC.EF5AC860 Content-Type: application/vnd.ms-excel; name="Copy of Book1.xls" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="Copy of Book1.xls" </code></pre> <p>second attachment:</p> <pre><code>------=_NextPart_000_0091_01C940CC.EF5AC860 Content-Type: application/vnd.ms-excel; name="=?gb2312?B?uLGxvmhlbrixsb5nLnhscw==?=" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="=?gb2312?B?uLGxvmhlbrixsb5nLnhscw==?=" </code></pre> <p>Please note both "<strong>Content-Transfer-Encoding</strong>" have base64</p> http://stackoverflow.com/questions/316518/ghostscript-pdf-tiff-throws-an-untrappable-exception-when-consuming-files-wit 0 Ghostscript PDF -> TIFF throws an untrappable exception, when consuming files with asian fonts Setori 2008-11-25T06:41:16Z 2009-11-04T22:00:02Z <p>Ghostscript curls up and dies, throwing an exception to stdout which I cannot catch and log. I am pretty sure it gets sick when I give it asian fonts. Has anybody backed into this problem and solved it?</p> http://stackoverflow.com/questions/840763/using-java-util-prefs-preferences-in-jython 0 Using java.util.prefs.Preferences in Jython Eric Wendelin 2009-05-08T16:45:11Z 2009-11-04T14:15:11Z <p>I seem to be having trouble storing Java preferences using a Jython script. If in Jython 2.5 beta I use:</p> <pre><code>clazz = Class.forName('mypackage.myclass') prefs = Preferences.userNodeForPackage(clazz); # or Preferences.userRoot() prefs.put('propertyname', 'yes') </code></pre> <p>The preferences are not stored. If I then add:</p> <pre><code>prefs.flush() </code></pre> <p>I get</p> <blockquote> <p>java.util.prefs.BackingStoreException: Couldn't get file lock.</p> </blockquote> <p>I am currently running this on Linux and Unix using Java 1.6. I'm hoping that I'm missing something obvious, since my Java applications can successfully use java.util.prefs.Preferences on the same system.</p> <p>Any help would be greatly appreciated.</p> http://stackoverflow.com/questions/1661310/beautifulsoup-with-jython 2 BeautifulSoup with Jython gooli 2009-11-02T13:22:53Z 2009-11-03T06:11:54Z <p>I just tried to run BeautifulSoup (3.1.0.1) with Jython (2.5.1) and I was amazed to see how much slower it was than CPython. Parsing a page (<a href="http://www.fixprotocol.org/specifications/fields/5000-5999" rel="nofollow">http://www.fixprotocol.org/specifications/fields/5000-5999</a>) with CPython took just under a second (0.844 second to be exact). With Jython it took 564 seconds - almost 700 times as much.</p> <p>Can anyone confirm this result? It's doesn't seem reasonable for Jython to run 700 times slower than CPython. Perhaps something is wrong with my setup.</p> <p>[Edit] Here's the code I used to test this (naturally I downloaded the above mentioned HTML file):</p> <pre><code>import time from BeautifulSoup import BeautifulSoup data = open("fix-5000-5999.html").read() start = time.time() soup = BeautifulSoup(data) print time.time() - start </code></pre> http://stackoverflow.com/questions/1652304/jython-2-5-1-eclipse-os-path 0 Jython 2.5.1, Eclipse & os.path Leonidas 2009-10-30T21:02:02Z 2009-10-30T21:02:02Z <p>I have imported the Jython2.5.1 standalone jar into my build path in Eclipse. Whenever I run any Jython code from within Eclipse, that uses the os.path module, the app barfs:</p> <pre><code>'Execution failed. Traceback (most recent call last): File "&lt;string&gt;", line 1, in &lt;module&gt; File "../lib/python/threading.py", line 6, in &lt;module&gt; import traceback File "../lib/python/traceback.py", line 3, in &lt;module&gt; import linecache File "../lib/python/linecache.py", line 9, in &lt;module&gt; import os File "../lib/python/os.py", line 132, in &lt;module&gt; from os.path import curdir, pardir, sep, pathsep, defpath, extsep, altsep, devnull ImportError: cannot import name curdir' </code></pre> <p>The code on line 132 in os.py and the previous couple lines are:</p> <pre><code>if _name == 'nt': import ntpath as path else: import posixpath as path sys.modules['os.path'] = _path = path from os.path import curdir, pardir, sep, pathsep, defpath, extsep, altsep, devnull </code></pre> <p>I think this is a problem with os.path, and not curdir, but I have no idea how to fix it. I am running the app with the paramter -Dpython.home=.. in the eclipse run config. I'm running this on linux.</p> <p>Thanks</p> http://stackoverflow.com/questions/1617105/xstream-like-xml-serialization-for-jython-objects 0 XStream-like XML serialization for Jython objects? Joonas Pulakka 2009-10-24T06:02:03Z 2009-10-29T09:09:23Z <p>Jython is great for creating custom data structures on need basis, but how to store their instances? Apparently it's possible to do it via <code>java.io.Serializable</code>, but <code>ObjectStreams</code> are not human readable; I would prefer XML.</p> <p>I naïvely tried <a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a> to serialize a simple object created in Jython and translated to Java with <code>PyObject</code>'s <code>__tojava__</code> method, but the result was, expectedly, pretty much gibberish because of XStream's heavy use of reflection (it finds all Jython's internals) - and deserialization doesn't work (maybe because of Jython's dynamically loaded proxy classes or some other implementation details that I'm really not familiar with.)</p> <p>Is there anything like <a href="http://xstream.codehaus.org/" rel="nofollow">XStream</a> for Jython objects - perhaps a Jython library?</p> http://stackoverflow.com/questions/1639294/jython-2-5-1-importerror-no-module-named-os 1 Jython 2.5.1: "ImportError: No Module named os" Leonidas 2009-10-28T18:45:29Z 2009-10-28T19:23:13Z <p>I looked through the other posts and bug reports and couldn't figure out what's causing this. I'm using Jython 2.5.1, in a Java project in Eclipse (Ubuntu 8.10). It has been added to the project as a standalone .jar file (I just replaced the old Jython 2.1 jar with this one).</p> <p>I'm running a script that uses the threading.py class. At some point the statement "import os" is evaluated from linecache.py and I get this error, which I can't seem to figure out how to fix: </p> <pre><code>'Execution failed. Traceback (most recent call last): File "&lt;string&gt;", line 1, in &lt;module&gt; File "../lib/python/threading.py", line 6, in &lt;module&gt; import traceback File "../lib/python/traceback.py", line 3, in &lt;module&gt; import linecache File "../lib/python/linecache.py", line 9, in &lt;module&gt; import os ImportError: No module named os' </code></pre> http://stackoverflow.com/questions/1252965/distributing-my-python-scripts-as-jars-with-jython 5 Distributing my python scripts as jars with jython? sharat87 2009-08-10T03:11:51Z 2009-10-22T19:11:53Z <p>Hi all, I have been a python programmer for almost 2 years and I am used to writing small scripts to automate some repetitive tasks I had to do at office. Now, apparently my colleagues noticed this and they want those scripts too.</p> <p>Some of them have macs, some windows, I made these on windows. I investigated the possibility of using py2exe or even py2app to make natives of my script, but they never satisfied me..</p> <p>I came to know that all of them have JVM on their systems, so can I give them one single executable jar file of my script using something like jython may be?</p> <p>How feasible is this... I mean, I had no idea how to write scripts for jython, neither did I care about it when I wrote them... what kind of problems will it give?</p> http://stackoverflow.com/questions/1602427/using-jython-with-m2eclipse 1 Using Jython with M2Eclipse Strawberry 2009-10-21T17:46:46Z 2009-10-22T15:49:09Z <p>I currntly use <a href="http://m2eclipse.sonatype.org/" rel="nofollow">M2Eclipse</a> for the majority of my Java development and <a href="http://pydev.org/" rel="nofollow">Pydev</a> for Python/Jython development within Eclipse. I would like to use Jython to prototype and test classes within my Java projects. The M2Eclipse plugin manages all the dependencies defined in the Maven pom.xml file automatically. </p> <p>Is there anyway for Pydev to utilise these dependencies without having to import each jar separately?</p> http://stackoverflow.com/questions/1603189/why-can-i-not-import-the-python-module-signal-using-jython-in-linux 1 Why can I not import the Python module 'signal' using Jython, in Linux? Leonidas 2009-10-21T19:52:23Z 2009-10-21T20:07:04Z <p>I can't find any reference to the 'signal' class being left out in Jython. Using Jython 2.1.</p> <p>Thanks</p> http://stackoverflow.com/questions/1517447/how-do-you-use-jython-for-your-java-development 2 How do you use Jython for your Java development? Andrei Vajna II 2009-10-04T21:37:18Z 2009-10-20T10:20:18Z <p>So you aren't allowed to use Jython for the production code you develop at work. You can, instead, use it to help you on your daily tasks and activities writing that Java code. The question is: How do you use Jython and how did that help your development and/or productivity?</p> http://stackoverflow.com/questions/1582674/using-creating-python-objects-with-jython 2 Using/Creating Python objects with Jython JustMaximumPower 2009-10-17T17:03:37Z 2009-10-18T08:43:17Z <p>HI, </p> <p>lets say I have a Java interface B, something like this. B.java :</p> <pre><code>public interface B { String FooBar(String s); } </code></pre> <p>and I want to use it with a Python class D witch inherits B, like this. D.py :</p> <pre><code>class D(B): def FooBar(s) return s + 'e' </code></pre> <p>So now how do I get an instance of D in java? I'm sorry im asking such a n00b question but the Jython doc sucks / is partially off line. </p> http://stackoverflow.com/questions/1575293/how-to-instantly-termainate-an-un-supervised-script-on-demand 0 How to instantly termainate an un-supervised script on demand? errr 2009-10-15T21:47:59Z 2009-10-15T22:14:08Z <p>I have a GUI which resembles an interpreter. It allows the user to write a script in Jython (implementation of Python in Java) and run it whenever he wants. Apart from that, I also wish to allow the user to instantly terminate the run whenever he wants.</p> <p>Thing is, I don't really know how to do it. The script is being run on a different Thread, but I don't know of any secure way to stop/interrupt/terminate a thread in the middle of its run, let alone not knowing what is being run by the thread/script (it could be a simple task or maybe some sort of a heavy SQL query against a DB, and a DB is something which requires careful resource handling).</p> <p>How can I instantly terminate such run on demand?</p> http://stackoverflow.com/questions/1566411/should-i-keep-my-python-code-at-2-x-or-migrate-to-3-x-if-i-plan-to-eventually-use 3 Should I keep my Python code at 2.x or migrate to 3.x if I plan to eventually use Jython? Uri 2009-10-14T14:00:13Z 2009-10-14T17:19:12Z <p>I have a large infrastructure that is written in Python 2.6, and I recently took a stab at porting to 3.1 (was much smoother than I expected) despite the lack of backwards compatibility.</p> <p>I eventually want to integrate some of this Python code with a lot of Java based code that we have, and was thinking about giving Jython a try. However, from looking at the Jython tutorials, all the examples are in 2.6 syntax (e.g., print is not yet a function).</p> <p>Does/will Jython support Python 3.x syntax at present or in the near future? Or should I roll back to 2.6 if I want to eventually use Jython?</p> http://stackoverflow.com/questions/1075905/class-file-from-jython-with-pydev 0 .class file from jython with pydev Victor 2009-07-02T18:17:59Z 2009-10-14T00:29:15Z <p>My first attempt at jython is a java/jython project I'm writing in eclipse with pydev.</p> <p>I created a java project and then made it a pydev project by the RightClick project >> pydev >> set as... you get the idea. I then added two source folders, one for java and one for jython, and each source folder has a package. And I set each folder as a buildpath for the project. I guess I'm letting you know all this so hopefully you can tell me wether or not I set the project up correctly.</p> <p>But the real question is: <strong>how do I get my jython code made into a class file so the java code can use it?</strong> The preferred method would be that eclipse/pydev would do this for me automatically, but I can't figure it out. Something mentioned in the jython users guide implies that it's possible but I can't find info on it anywhere.</p> <p>EDIT: I did find some information <a href="http://wiki.python.org/jython/JythonMonthly/Articles/September2006/1" rel="nofollow">here</a> and <a href="http://www.jython.org/archive/22/jythonc.html#what-is-jythonc" rel="nofollow">here</a>, but things are not going too smooth.</p> <p>I've been following the guide in the second link pretty closely but I can't figure out how to get jythonc to make a constructor for my python class.</p>