[EMAIL PROTECTED] wrote:
> I wrote a jython class bus I can not use it in another jython script
> :-(
> Example:
> ---------------------- X.py----------------------
> class X:
>  def hello():
>  print "Hello"
> 
> 
> ---------------------- Y.py----------------------
> import X
> x = X()
> x.hello()
> 
> 
> I get TypeError: call of non function (module 'X')
> Both files are in the same directory.

try
from X import X
or
x = X.X()


Frank
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to