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 ncoghlan
Recipients Rhamphoryncus, brett.cannon, bronger, dcjim, eric.araujo, jhylton, loewis, ncoghlan, tim.peters
Date 2011-10-16.06:48:14
SpamBayes Score 1.2237023e-06
Marked as misclassified No
Message-id <1318747695.29.0.72612354733.issue992389@psf.upfronthosting.co.za>
In-reply-to
Content
Changed the issue title to state clearly that the core issue is with circular imports that attempt to reference module contents at import time, regardless of the syntactic form used. All of the following module level code can fail due to this problem:

    from . import a

    from package import submodule

    from module import a

    import module
    module.a
History
Date User Action Args
2011-10-16 06:48:15ncoghlansetrecipients: + ncoghlan, tim.peters, loewis, jhylton, brett.cannon, dcjim, Rhamphoryncus, bronger, eric.araujo
2011-10-16 06:48:15ncoghlansetmessageid: <1318747695.29.0.72612354733.issue992389@psf.upfronthosting.co.za>
2011-10-16 06:48:14ncoghlanlinkissue992389 messages
2011-10-16 06:48:14ncoghlancreate