Nick Coghlan <ncogh...@gmail.com> added the comment:

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

----------
title: attribute error after non-from import -> attribute error due to circular 
import

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue992389>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to