Message4693

Author otmarhumbel
Recipients MartinTschoepe, otmarhumbel
Date 2009-05-18.12:50:23
SpamBayes Score 4.912737e-14
Marked as misclassified No
Message-id <1242651024.55.0.217940241536.issue1349@psf.upfronthosting.co.za>
In-reply-to
Content
Please find a sample CPython 2.5.1 session below:

C:\>python
Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit
(Intel)] on win32
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 0x01A4E0D0>
>>>
History
Date User Action Args
2009-05-18 12:50:24otmarhumbelsetmessageid: <1242651024.55.0.217940241536.issue1349@psf.upfronthosting.co.za>
2009-05-18 12:50:24otmarhumbelsetrecipients: + otmarhumbel, MartinTschoepe
2009-05-18 12:50:24otmarhumbellinkissue1349 messages
2009-05-18 12:50:24otmarhumbelcreate