From: Samuele P. <pe...@in...> - 2002-03-23 00:42:49
|
From: Edward Povazan <epo...@te...> > I am using Jython 2.1 under XP Pro. > > > import impi.core > > dir(impi.core) > ['__doc__', '__file__', '__name__', '__path__'] > > Hmm, this is strange, but I can acually: That means that impi.core is a Python package, you have a __init__.py both in impi and impi/core? That's OK. But so your from impi.core import * will never get you the Java class. Anyway why the error? The thing you haven't said to us is that you are doing the from impi.core import * from a module inside impi.core, is that true? Samuele. |