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 ztane
Recipients docs@python, ztane
Date 2016-05-21.07:45:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1463816705.73.0.630465423608.issue27074@psf.upfronthosting.co.za>
In-reply-to
Content
https://docs.python.org/3/tutorial/modules.html#importing-from-a-package

says that 

"The import statement uses the following convention: if a package’s __init__.py code defines a list named __all__, it is taken to be the list of module names that should be imported when from package import * is encountered."

However, of course this is not true. The behaviour is that `__all__` lists the names that are to be imported from the package with from package import *; only only those names that raise AttributeError at the time of import would be attempted to be imported as submodules.
History
Date User Action Args
2016-05-21 07:45:05ztanesetrecipients: + ztane, docs@python
2016-05-21 07:45:05ztanesetmessageid: <1463816705.73.0.630465423608.issue27074@psf.upfronthosting.co.za>
2016-05-21 07:45:05ztanelinkissue27074 messages
2016-05-21 07:45:05ztanecreate