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 brett.cannon
Recipients Arfrever, brett.cannon, eric.araujo, eric.snow, ezio.melotti, flox, terry.reedy
Date 2013-06-07.17:29:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1370626141.0.0.681034166585.issue14797@psf.upfronthosting.co.za>
In-reply-to
Content
Current status (with test_imp stripped out):

> ack "imp\.(find|load)_module" Lib
Lib/modulefinder.py
482:        return imp.find_module(name, path)

Lib/pkgutil.py
189:            file, filename, etc = imp.find_module(subname, path)
251:            mod = imp.load_module(fullname, self.file, self.filename, self.etc)

Lib/pydoc.py
47:#   - imp.load_module() cannot be prevented from clobbering existing
280:            module = imp.load_module(name, file, path, (ext, 'r', kind))

Lib/test/test_importhooks.py
118:            file, filename, stuff = imp.find_module(subname, path)
132:        mod = imp.load_module(fullname, self.file, self.filename, self.stuff)
History
Date User Action Args
2013-06-07 17:29:01brett.cannonsetrecipients: + brett.cannon, terry.reedy, ezio.melotti, eric.araujo, Arfrever, flox, eric.snow
2013-06-07 17:29:01brett.cannonsetmessageid: <1370626141.0.0.681034166585.issue14797@psf.upfronthosting.co.za>
2013-06-07 17:29:00brett.cannonlinkissue14797 messages
2013-06-07 17:29:00brett.cannoncreate