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 lemburg
Recipients dstufft, eric.araujo, lemburg
Date 2014-06-13.14:08:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1402668511.45.0.703803525132.issue21749@psf.upfronthosting.co.za>
In-reply-to
Content
This leads to problems when using runpy, since it relies on pkgutil to find importers.

In Python 2, ImpLoader is used by ImpImporter which is used as fallback importer by get_importer(). get_importer() is used by runpy to implement e.g. the -m option. As a result, -m doesn't work with frozen modules.

In Python 3, ImpLoader still exists, but is deprecated. get_importer() also no longer falls back to the ImpImporter as default, so the situation is less bothersome.

Here's a patch for Python 3.4.1 which shows how to add support for frozen modules. The same patch also works in Python 2.6 and 2.7.
History
Date User Action Args
2014-06-13 14:08:31lemburgsetrecipients: + lemburg, eric.araujo, dstufft
2014-06-13 14:08:31lemburgsetmessageid: <1402668511.45.0.703803525132.issue21749@psf.upfronthosting.co.za>
2014-06-13 14:08:31lemburglinkissue21749 messages
2014-06-13 14:08:31lemburgcreate