Message511

Author herron
Recipients
Date 2001-12-08.00:04:10
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The attached (very short) program, when compiled and
run as an applet fails with the message:

java.lang.NoClassDefFoundError:
    org/python/compiler/ProxyMaker

The culprit is the inclusion of a (so far unused) class
with swing.Box as its base class.
    class Useless(swing.Box): pass
Removing this class, or deleting the swing.Box base
class eliminates the error.

But, of course, I will really want this class, so
my sledge hammer work around is to compile with
  --all
on the jythonc statement. forcing ProxyMaker (and
lots more) into the jar file.



History
Date User Action Args
2008-02-20 17:16:58adminlinkissue490470 messages
2008-02-20 17:16:58admincreate