0
votes
2answers
21 views
Jython refuses to find Swing
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:
@echo off
"%JAVA_HOME%\bin\java" -Xmx1 …
0
votes
1answer
55 views
BeautifulSoup with Jython
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 (http://www.fixprotocol.org/specificatio …
1
vote
2answers
67 views
Jython 2.5.1: “ImportError: No Module named os”
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 …
0
votes
1answer
31 views
XStream-like XML serialization for Jython objects?
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 java.io.Serializable, but ObjectStreams a …
0
votes
0answers
16 views
Jython 2.5.1, Eclipse & os.path
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:
'Exe …
1
vote
1answer
48 views
Using Jython with M2Eclipse
I currntly use M2Eclipse for the majority of my Java development and Pydev for Python/Jython development within Eclipse. I would like to use Jython to prototype and test classes wi …
1
vote
1answer
44 views
Why can I not import the Python module ‘signal’ using Jython, in Linux?
I can't find any reference to the 'signal' class being left out in Jython. Using Jython 2.1.
Thanks
2
votes
2answers
74 views
Using/Creating Python objects with Jython
HI,
lets say I have a Java interface B, something like this. B.java :
public interface B { String FooBar(String s); }
and I want to use it with a Python class D witch inherits …
2
votes
3answers
91 views
Should I keep my Python code at 2.x or migrate to 3.x if I plan to eventually use Jython?
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 compatib …
2
votes
5answers
116 views
How do you use Jython for your Java development?
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 …
0
votes
1answer
31 views
How to instantly termainate an un-supervised script on demand?
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 …
5
votes
3answers
376 views
Distributing my python scripts as jars with jython?
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 collea …
0
votes
1answer
54 views
class importing in jython
I've got a jython script that needs to include a class (from JUnit in this case). I've got the junit jar in "some/path/junit.jar". My script is:
from junit.textui import TestRunne …
1
vote
1answer
32 views
transforming Jython’s source / ast
I've got a problem to solve in Jython. The function I've got looks like this:
ok = whatever1(x, ...)
self.assertTrue("whatever1 failed: "+x...(), ok)
ok = whatever2(x, ...)
self. …
0
votes
1answer
27 views
Can you run Jython on the JVM that runs on Pulse smart pens?
I'm looking at developing an application that takes advantage of the Pulse smart pen.
I would rather do it in python than java. Its not clear what version of the jvm runs on the p …
