Brett Cannon added the comment:

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)

----------
versions: +Python 3.4 -Python 3.3

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue14797>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to