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.snow
Recipients brett.cannon, eric.snow, larry, ncoghlan
Date 2014-04-11.14:07:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1397225255.72.0.022634576387.issue21200@psf.upfronthosting.co.za>
In-reply-to
Content
Prior to 3.4, pkgutil.get_loader('__main__') would return None.  Now it results in an ImportError.  That's because it calls importlib.util.find_spec() which fails if an existing module does not have __spec__ or it is None.
History
Date User Action Args
2014-04-11 14:07:35eric.snowsetrecipients: + eric.snow, brett.cannon, ncoghlan, larry
2014-04-11 14:07:35eric.snowsetmessageid: <1397225255.72.0.022634576387.issue21200@psf.upfronthosting.co.za>
2014-04-11 14:07:35eric.snowlinkissue21200 messages
2014-04-11 14:07:34eric.snowcreate