Message4166

Author fwierzbicki
Recipients MrMeanie, aviflax, fwierzbicki, gunter.bach, sergei175
Date 2009-03-02.20:35:03
SpamBayes Score 2.9089074e-07
Marked as misclassified No
Message-id <1236026104.94.0.16345251179.issue1263@psf.upfronthosting.co.za>
In-reply-to
Content
So this is a dup of http://bugs.jython.org/issue1239 unless some of you
are using standalone mode (or turning off package scanning in some other
way).  If you have package scanning off, you cannot use from <java
class> import * due to limits of the JVM (Native Java packages have no
getClasses() and package scanning works around this).  So in this case
you need to turn scanning on, or use explicit imports like:

import java.io.File
from java.io import File
History
Date User Action Args
2009-03-02 20:35:04fwierzbickisetmessageid: <1236026104.94.0.16345251179.issue1263@psf.upfronthosting.co.za>
2009-03-02 20:35:04fwierzbickisetrecipients: + fwierzbicki, MrMeanie, sergei175, gunter.bach, aviflax
2009-03-02 20:35:04fwierzbickilinkissue1263 messages
2009-03-02 20:35:04fwierzbickicreate