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 vstinner
Recipients Arfrever, amaury.forgeotdarc, belopolsky, benjamin.peterson, brett.cannon, eric.araujo, georg.brandl, ncoghlan, pitrou, python-dev, r.david.murray, terry.reedy, vstinner
Date 2011-03-20.11:35:12
SpamBayes Score 0.006769311
Marked as misclassified No
Message-id <1300620913.19.0.595678026722.issue3080@psf.upfronthosting.co.za>
In-reply-to
Content
>     mod = imp.load_module(fullname, self.file, self.filename, self.stuff)
> TypeError: 'NoneType' object is not iterable

The problem is that imp.find_module() now returns None as the filename, but imp.load_module() doesn't support None.
History
Date User Action Args
2011-03-20 11:35:13vstinnersetrecipients: + vstinner, brett.cannon, georg.brandl, terry.reedy, amaury.forgeotdarc, ncoghlan, belopolsky, pitrou, benjamin.peterson, eric.araujo, Arfrever, r.david.murray, python-dev
2011-03-20 11:35:13vstinnersetmessageid: <1300620913.19.0.595678026722.issue3080@psf.upfronthosting.co.za>
2011-03-20 11:35:12vstinnerlinkissue3080 messages
2011-03-20 11:35:12vstinnercreate