This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author brett.cannon
Recipients antox, brett.cannon
Date 2015-02-12.15:30:19
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1423755019.33.0.851031361212.issue23447@psf.upfronthosting.co.za>
In-reply-to
Content
If you put a print call after your `from . import *` call you will notice it never gets executed. Basically import is still in the middle of finishing imports when that import * is reached, including setting the module attributes on the package. Basically you have a circular import.
History
Date User Action Args
2015-02-12 15:30:19brett.cannonsetrecipients: + brett.cannon, antox
2015-02-12 15:30:19brett.cannonsetmessageid: <1423755019.33.0.851031361212.issue23447@psf.upfronthosting.co.za>
2015-02-12 15:30:19brett.cannonlinkissue23447 messages
2015-02-12 15:30:19brett.cannoncreate