Message4694

Author otmarhumbel
Recipients MartinTschoepe, otmarhumbel
Date 2009-05-18.12:51:12
SpamBayes Score 1.658318e-11
Marked as misclassified No
Message-id <1242651072.62.0.127293606483.issue1349@psf.upfronthosting.co.za>
In-reply-to
Content
And now the same statements in Jython 2.5 rc2:


C:\stuff\jython\jython-2.5rc2>jython
Jython 2.5rc2 (Release_2_5rc2:6341, May 11 2009, 17:07:28)
[Java HotSpot(TM) Client VM (Sun Microsystems Inc.)] on java1.6.0_13
Type "help", "copyright", "credits" or "license" for more information.
>>> foo.bar.a.A()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'foo' is not defined
>>> from foo.bar.a import A
>>> foo.bar.a.A()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'foo' is not defined
>>> import foo
>>> import foo.bar
>>> import foo.bar.a
>>> foo.bar.a.A()
A was created
<foo.bar.a.A instance at 0x1>
>>>
History
Date User Action Args
2009-05-18 12:51:12otmarhumbelsetmessageid: <1242651072.62.0.127293606483.issue1349@psf.upfronthosting.co.za>
2009-05-18 12:51:12otmarhumbelsetrecipients: + otmarhumbel, MartinTschoepe
2009-05-18 12:51:12otmarhumbellinkissue1349 messages
2009-05-18 12:51:12otmarhumbelcreate