Message4685

Author MartinTschoepe
Recipients MartinTschoepe
Date 2009-05-15.09:26:44
SpamBayes Score 3.1175318e-06
Marked as misclassified No
Message-id <1242379605.64.0.37440537554.issue1349@psf.upfronthosting.co.za>
In-reply-to
Content
when having a file "foo/bar/a.py" in the jython path defining a class A
then an access to 

foo.bar.a.A()

leads to an 

AttributeError: 'module' object has no attribute 'a'

even when

from foo.bar import a
a.A()

works. Furthermore

from foo.bar.a import A

doesn't work as well.

This behavior has been found with the Rc2 of jython 2.5 binary.
History
Date User Action Args
2009-05-15 09:26:45MartinTschoepesetrecipients: + MartinTschoepe
2009-05-15 09:26:45MartinTschoepesetmessageid: <1242379605.64.0.37440537554.issue1349@psf.upfronthosting.co.za>
2009-05-15 09:26:45MartinTschoepelinkissue1349 messages
2009-05-15 09:26:44MartinTschoepecreate