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 brett.cannon, dmugtasimov, docs@python, ncoghlan, r.david.murray
Date 2013-01-08.23:40:01
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CADiSq7d2LQgA06gNez-_XEeJBGZ9+JW6qR6ZUT3-RXGgF_47rQ@mail.gmail.com>
In-reply-to <1357657456.34.0.665470191827.issue16891@psf.upfronthosting.co.za>
Content
The docs sometimes try to draw a sharp distinction between modules and
packages, but it's essentially a lie - a package is really just a module
with a __path__ attribute, and if you know what you are doing, you make
even an ordinary module behave like a package (e.g. os.path)

Until 3.3, the import system had too many internal inconsistencies for sane
documentation. That's fixed in 3.3, but no comprehensive docs will be
happening for earlier versions.
History
Date User Action Args
2013-01-08 23:40:02ncoghlansetrecipients: + ncoghlan, brett.cannon, r.david.murray, docs@python, dmugtasimov
2013-01-08 23:40:01ncoghlanlinkissue16891 messages
2013-01-08 23:40:01ncoghlancreate