<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://blog.gmane.org/gmane.comp.lang.jython.user">
    <title>gmane.comp.lang.jython.user</title>
    <link>http://blog.gmane.org/gmane.comp.lang.jython.user</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7330"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7329"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7328"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7327"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7326"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7325"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7324"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7323"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7322"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7321"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7320"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7319"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7318"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7317"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7316"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7315"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7314"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7313"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7312"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.jython.user/7311"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7330">
    <title>jythono code completion?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7330</link>
    <description>Eclipse code-completion works wonderfully for Java. I wonder
if it supports code-completion of Java classes in Jython?
Or, is there some other editors that support this? I have been
using a Python editor for my Jython work and it knows nothing
about the Java classes...


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>jlist</dc:creator>
    <dc:date>2008-12-01T17:59:37</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7329">
    <title>Re: SciPy with Jython</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7329</link>
    <description>-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/_______________________________________________
Jython-users mailing list
Jython-users&lt; at &gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jython-users
</description>
    <dc:creator>Jim Baker</dc:creator>
    <dc:date>2008-12-01T17:01:20</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7328">
    <title>using telnetlib and its expect method in jython</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7328</link>
    <description>
Hi,

I am using the latest stable version of jython, version 2.2.1 and I am
trying to write a simple telnet program. However, I am having an issue with
the expect method in it.

Here is my code:

import telnetlib

HOST = 'localhost'
user = 'someone'
password = 'someones password'

tn = telnetlib.Telnet(HOST, 22)

aa, bb, cc = tn.expect(['&gt;&gt;&gt;'], 1)

print aa
print bb
print cc

And this is the error message:

Traceback (innermost last):
  File "/home/qm/workspace/project000/telnettest.py", line 11, in ?
  File "/home/qm/jython/Lib/telnetlib.py", line 623, in expect
  File "/home/qm/jython/Lib/select.py", line 204, in
cpython_compatible_select
  File "/home/qm/jython/Lib/select.py", line 54, in _getselectable
TypeError: ("Object 'java.nio.channels.SocketChannel[connected
local=/127.0.0.1:45293 remote=/127.0.0.1:22]' is not watchable", 88)

What am I supposed to do? Keep in mind that it works fine in Cpython and
also if I replace expect method with read_until method. But, expect is
important for me because there are multiple matches that I want to do, and I
do not know the order in advance.

Thanks in advance!

/edit With further investigation, I have found out that if I leave out the
timeout argument, and run it will work. But as soon as I set the timeout, I
get this error. Any hints on what to do? I mean this method must have been
tested thoroughly before right?
</description>
    <dc:creator>ShamanMahmoudi</dc:creator>
    <dc:date>2008-12-01T12:59:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7327">
    <title>SciPy with Jython</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7327</link>
    <description>Hi

Has sciPy been ported to jython or is there a way to use Scipy in Java.
If yes can anyone provide with a link of an example or anything for
that... i.e demonstrating how to use it. Couldn't really find any...


TIA

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>indian scorpio</dc:creator>
    <dc:date>2008-12-01T09:11:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7326">
    <title>Raymundo Baquirin has invited you to join Friendster</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7326</link>
    <description>-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/_______________________________________________
Jython-users mailing list
Jython-users&lt; at &gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jython-users
</description>
    <dc:creator>Raymundo Baquirin</dc:creator>
    <dc:date>2008-12-01T02:23:19</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7325">
    <title>Embed Jython into Eclipse Plugin - javaos not found</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7325</link>
    <description>-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/_______________________________________________
Jython-users mailing list
Jython-users&lt; at &gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jython-users
</description>
    <dc:creator>Paul Gibbons</dc:creator>
    <dc:date>2008-11-30T21:35:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7324">
    <title>Re: Syntax errors</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7324</link>
    <description>I have compiled your exact code (copy and paste) and it runs  
perfectly. Maybe, you have a problem in the classpath.

josu

On 08-aza-30, at 01:23, David Bush wrote:



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>josu</dc:creator>
    <dc:date>2008-11-30T09:03:13</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7323">
    <title>Re: Syntax errors</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7323</link>
    <description>Jeff-

I agree...those were my same thoughts.


Josh Juneau
juneau001&lt; at &gt;gmail.com
http://jj-blogger.blogspot.com
http://www.gathereventplanning.com
Twitter ID:  javajuneau



On Sat, Nov 29, 2008 at 8:22 PM, Jeff Emanuel &lt;jemanuel&lt; at &gt;frii.com&gt; wrote:

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Josh Juneau</dc:creator>
    <dc:date>2008-11-30T02:45:39</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7322">
    <title>Re: Syntax errors</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7322</link>
    <description>Hi David-

I will take a couple of guesses as to what is going wrong, but I
cannot be sure because the code looks to be correct.

My first suggestion is that in the first program you displayed, the
last import statement is spanning two lines.  This could be simply
because of the way the email was formatted, but if not then it needs
to be on a single line.

Second, which version of the JDK are you using to compile this code?
How are you attempting to compile, via IDE or command line?

Hopefully your answers to the above questions can help us decide where
the issue resides.

Best

Josh Juneau
juneau001&lt; at &gt;gmail.com
http://jj-blogger.blogspot.com
http://www.gathereventplanning.com
Twitter ID:  javajuneau



On Sat, Nov 29, 2008 at 6:23 PM, David Bush &lt;davidbush4&lt; at &gt;googlemail.com&gt; wrote:

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Josh Juneau</dc:creator>
    <dc:date>2008-11-30T02:37:45</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7321">
    <title>Re: Syntax errors</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7321</link>
    <description>
It appears you are passing Java code to
the Jython intepreter.  Try javac instead.

David Bush wrote:

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Jeff Emanuel</dc:creator>
    <dc:date>2008-11-30T02:22:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7320">
    <title>Syntax errors</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7320</link>
    <description>-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/_______________________________________________
Jython-users mailing list
Jython-users&lt; at &gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jython-users
</description>
    <dc:creator>David Bush</dc:creator>
    <dc:date>2008-11-30T00:23:04</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7319">
    <title>Jython Monthly - Issue #24 - November 28, 2008</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7319</link>
    <description>============================================
Jython Monthly - Issue #24 - November 28, 2008
URL: http://wiki.python.org/jython/JythonMonthly/Newsletters/November2008
Please send articles and news to:  juneau001&lt; at &gt;gmail.com
============================================

Please read the complete newsletter by visiting the URL above.

Happy Thanksgiving to the community.  Stay tuned for the new Jython
Monthly podcast
which should begin next month if all goes as planned.  I will post
details to the list.

Sorry for the late distribution this month, the family and work have been
keeping me busy!

Best,

Josh Juneau

Summary of November 2008 Contents:

News
====

Jython 2.5 b0 Released
http://www.jython.org

Netbeans 6.5 Released
http://www.netbeans.org

nbPython Releases EA
http://download.netbeans.org/netbeans/6.5/python/ea/

Jythonroid
http://code.google.com/p/jythonroid/

Articles
======

Comparison of Python Virtual Machines

    In this article I'm going to go through some details about what is
going on under the hood
    when you run a Python program, as well how those details have
changed over the years
   in different python's    implementations ranging from original
CPython (Python implementation in C)
   all the way to the newest implementations like PyPy.

    Read More -
    http://polishlinux.org/apps/cli/comparison-of-python-virtual-machines/



Jython Web Start application - step-by-step guide Alfonso Reyes

    Create Java Web Start applications with Jython and OSP.
    http://reyesaguayo.com/osp/


Blogs
====

DB4O with Jython - Jim Cassidy

Jython Formula One Tutorial - Jim Cassidy

Updated Jython Roadmap - Frank Wierzbicki

Jython 2.5 Beta 0 Released - Frank Wierzbicki

Tor Norbye Finds Bug in Jython Lib in Netbeans - Frank Wierzbicki

Python Processing Proof-of-Concept - Jon Schull

Jython + Processing = Fun - Jon Schull

Techniques for Stubbing out Dependencies when Unit Testing Java Code -
Clint Miller

Jython Runs Successfully in Android Emulator - Fred Lin

Python in Netbeans - Ted Leung

How to Install and Use Jython to Write an ImageJ Plugin

How to Run ByteFlow Engine on Jython

Searching with Sonatype Nexus REST API: Python

Tutorials
=======

Netbeans Python Tutorial
http://wiki.netbeans.org/NetBeansPythonTutorial

Presentations
===========

Scripting Languages on Glassfish V3 Prelude

Movies
=====

Jython on Joint Strike Fighter
http://www.youtube.com/watch?v=zgE55z_RNgQ

IDE
===

Pydev 1.3.24 Released
http://pydev.sourceforge.net/

Netbeans
http://www.netbeans.org


============================================

View the Newsletter:
http://wiki.python.org/jython/JythonMonthly/Newsletters/November2008

Join the jython-users mailing list (jython-users&lt; at &gt;lists.sourceforge.net)
to subscribe.

=============================================
This issue of Jython Monthly was distributed by Josh Juneau.
Email: juneau001&lt; at &gt;gmail.com
Blog:   http://jj-blogger.blogspot.com
http://www.gathereventplanning.com
=============================================

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Josh Juneau</dc:creator>
    <dc:date>2008-11-29T03:11:09</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7318">
    <title>Re: string to method call</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7318</link>
    <description>Even better (and a bit safer):

getattr(classinstance, methodname)(*args, **kwargs)

Best,

Chris.

On Fri, Nov 28, 2008 at 09:19:32AM -0200, claudef&lt; at &gt;br.ibm.com wrote:


-------------------
http://mccormick.cx

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Chris McCormick</dc:creator>
    <dc:date>2008-11-28T13:18:47</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7317">
    <title>Re: Serialization</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7317</link>
    <description>

Charlie Groves wrote:

Well, the code I posted was minimal, so I'd say creating a test case is
expanding, not reducing, the code.
Anyway, I turned it into a basic set of junit tests:

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectOutputStream;

import org.junit.Test;
import org.python.core.PyModule;
import org.python.core.PyObject;
import org.python.core.imp;
import org.python.util.PythonInterpreter;
import org.python.util.PythonObjectInputStream;

public class SerializationTests {
private PythonInterpreter interp;

public void init() {
interp = new PythonInterpreter();
}

public void setupMain() {
final PyModule mod = imp.addModule("__main__");
interp.setLocals(mod.__dict__);
}

public void createObject() {
interp.exec("from java.lang import Object");
interp.exec("from java.io import Serializable");
interp.exec("class Test(Serializable):\n\tdef
__init__(self):\n\t\tObject.__init__(self)\n");
interp.exec("x = Test()");
}

public byte[] serialize() throws IOException {
final PyObject x = interp.get("x");
final ByteArrayOutputStream os = new ByteArrayOutputStream();
new ObjectOutputStream(os).writeObject(x);
return os.toByteArray();
}

public void deserialize(final byte[] b) throws IOException,
ClassNotFoundException {
final ByteArrayInputStream is = new ByteArrayInputStream(b);
new PythonObjectInputStream(is).readObject();
}

public void testSerialization() throws IOException, ClassNotFoundException
{
deserialize(serialize());
}

&lt; at &gt;Test
public void testDirect() throws IOException, ClassNotFoundException {
init();
createObject();
testSerialization();
}

&lt; at &gt;Test
public void testJython() {
init();
createObject();
interp.set("t", this);
interp.exec("t.testSerialization()");
}

&lt; at &gt;Test
public void testDirectWithMain() throws IOException, ClassNotFoundException
{
init();
setupMain();
createObject();
testSerialization();
}

&lt; at &gt;Test
public void testJythonWithMain() {
init();
setupMain();
createObject();
interp.set("t", this);
interp.exec("t.testSerialization()");
}
}

I couldn't figure out how to completely reset jython's state, so the test
results may be affected by the order in which you run them. But anyway, they
all fail (with errors), except the last one (testJythonWithMain).
The MOST important test, which really really must work reliably, is
testDirect. Currently it throws a NPE.

Adrian
</description>
    <dc:creator>aditsu</dc:creator>
    <dc:date>2008-11-28T12:49:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7316">
    <title>Re: sys.path</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7316</link>
    <description>Hi Charlie

Really, I have been trying to  get again the error and now the  
procedure is going perfectly without errors. I don't understand since  
I have been making different trials. I am going to try to put the same  
conditions as in the previous case. If I am able to detect again the  
problem, I will send to the list. Meanwhile, forgot my previous email.

Thank you very much

josu


El 08-aza-28, a las 07:19, Charlie Groves escribió:



-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>josu jugo</dc:creator>
    <dc:date>2008-11-28T11:20:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7315">
    <title>Re: string to method call</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7315</link>
    <description>-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/_______________________________________________
Jython-users mailing list
Jython-users&lt; at &gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jython-users
</description>
    <dc:creator>claudef&lt; at &gt;br.ibm.com</dc:creator>
    <dc:date>2008-11-28T11:19:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7314">
    <title>string to method call</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7314</link>
    <description>-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/_______________________________________________
Jython-users mailing list
Jython-users&lt; at &gt;lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jython-users
</description>
    <dc:creator>Ammar.Hassan&lt; at &gt;sungard.com</dc:creator>
    <dc:date>2008-11-28T10:45:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7313">
    <title>Re: Serialization</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7313</link>
    <description>Hi Adrian,

On Thu, Nov 27, 2008 at 5:35 AM, aditsu &lt;aditsu&lt; at &gt;yahoo.com&gt; wrote:
[long and bloody battle deleted]

I'm currently updating the representation of Java instances in Jython
for the second beta of 2.5 so they're new-style Python classes instead
of classic classes.  This means figuring out how to workaround
serialization issues in b0 is probably unproductive as whatever
problems are there will probably change.

What would be hugely helpful and could keep this from breaking in the
future is adding some test cases for serializing Python subclasses of
Java classes.  If you could reduce your code above and whatever else
you'd like to have work from your application to a test case we can
run from regrtest and add a patch to bugs.jython.org, I'll apply it as
part of my Java integration rework for 2.5 and make sure it passes for
the next beta.

Charlie

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Charlie Groves</dc:creator>
    <dc:date>2008-11-28T06:27:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7312">
    <title>Re: sys.path</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7312</link>
    <description>
Could you explain what you're doing when it doesn't show up?  You call
sys.path.append from the console in Netbeans and the jar isn't
available?  Are there any error messages?  What exactly doesn't work?

Charlie

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Charlie Groves</dc:creator>
    <dc:date>2008-11-28T06:19:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7311">
    <title>Re: Using Jython from Java</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7311</link>
    <description>
You can do this with a PythonInterpreter as well as with the command
prompt.  If you import sys and call sys.path.append with the path to
your libs through the eval or exec methods on PythonInterpreter, the
sys.path for that interpreter will be updated.


Ahh, looking through the changelogs, it appears JYTHONPATH wasn't
added until after 2.2, but it seemed obvious enough that I thought it
had been around forever.  Unless you're using one of the 2.5 alphas or
betas, JYTHONPATH isn't going to work.

The python.path system property exists in 2.2 and earlier and will
continue to exist in future Jythons.  To set it from an Eclipse
launcher, add -Dpython.path=&lt;path to Jython Lib&gt;&lt;platform path
separator&gt;&lt;path to your libs&gt; to the VM arguments field in the
arguments tab of your run configuration.

Apologies for the confusion,
Charlie

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Charlie Groves</dc:creator>
    <dc:date>2008-11-28T06:12:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.jython.user/7310">
    <title>Re: TypeError: _new_impl(): expected 2 args; got 1</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.jython.user/7310</link>
    <description>Could you provide a simple, complete example of what's going wrong?
It's hard to figure out how to fix it without being able to see it
first hand.

Charlie

On Tue, Nov 25, 2008 at 12:21 AM, pratibha chitipothu
&lt;pratibha.chitipothu&lt; at &gt;gmail.com&gt; wrote:

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK &amp; win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&amp;url=/
</description>
    <dc:creator>Charlie Groves</dc:creator>
    <dc:date>2008-11-28T05:50:53</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.comp.lang.jython.user">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.jython.user</link>
  </textinput>
</rdf:RDF>
