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 eric.smith
Recipients barry, brett.cannon, eric.smith, jaraco
Date 2012-04-24.15:37:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1335281879.19.0.607267120297.issue14660@psf.upfronthosting.co.za>
In-reply-to
Content
I created the NamespaceLoader in the feature branch. It has a load_module, but it's only ever called by the code in PathFinder.load_module:

                loader = NamespaceLoader(namespace_path)
                return loader.load_module(fullname)

namespace_path is what will become module.__path__. In order to keep the load_module API (single fullname argument), I pass it in to the constructor. There's no particular need for it to follow that API, but it does.
History
Date User Action Args
2012-04-24 15:37:59eric.smithsetrecipients: + eric.smith, barry, brett.cannon, jaraco
2012-04-24 15:37:59eric.smithsetmessageid: <1335281879.19.0.607267120297.issue14660@psf.upfronthosting.co.za>
2012-04-24 15:37:58eric.smithlinkissue14660 messages
2012-04-24 15:37:58eric.smithcreate