Brett Cannon added the comment:

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.

----------
nosy: +brett.cannon
resolution:  -> not a bug
status: open -> closed

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

Reply via email to