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-02-27.20:04:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1361995466.55.0.569963603219.issue14797@psf.upfronthosting.co.za>
In-reply-to
Content
Assuming issue #17314 gets fixed, that leaves the following uses of imp.find_module():

Lib/idlelib/EditorWindow.py
39:    """Version of imp.find_module() that handles hierarchical module names"""
45:        (file, filename, descr) = imp.find_module(tgt, path)

Lib/modulefinder.py
482:        return imp.find_module(name, path)

Lib/pkgutil.py
229:            file, filename, etc = imp.find_module(subname, path)

Lib/test/test_imp.py
59:            with imp.find_module('module_' + mod, self.test_path)[0] as fd:
64:            imp.find_module('badsyntax_pep3120', path)
68:            fp, filename, info  = imp.find_module('module_' + mod,
77:        fp, filename, info = imp.find_module("tokenize")
91:            file, filename, info = imp.find_module(temp_mod_name)
147:            file, filename, info = imp.find_module(temp_mod_name)
187:                          imp.find_module, "badsyntax_pep3120", [path])
201:            x = imp.find_module("os")
213:        x = imp.find_module(example)
223:        fileobj, pathname, description = imp.find_module(m)

Lib/test/test_import.py
128:                imp.find_module, TESTFN, ["."])

Lib/test/test_importhooks.py
118:            file, filename, stuff = imp.find_module(subname, path)
History
Date User Action Args
2013-02-27 20:04:26brett.cannonsetrecipients: + brett.cannon, terry.reedy, ezio.melotti, eric.araujo, Arfrever, flox, eric.snow
2013-02-27 20:04:26brett.cannonsetmessageid: <1361995466.55.0.569963603219.issue14797@psf.upfronthosting.co.za>
2013-02-27 20:04:26brett.cannonlinkissue14797 messages
2013-02-27 20:04:26brett.cannoncreate