def find_module(self): good_name = ext_util.NAME bad_name = good_name.upper() assert good_name != bad_name finder = _bootstrap.FileFinder(ext_util.PATH, (_bootstrap.ExtensionFileLoader, imp.extension_suffixes(), False)) return finder.find_module(bad_name)
def find_module(self, fullname): importer = _bootstrap.FileFinder( util.PATH, (_bootstrap.ExtensionFileLoader, imp.extension_suffixes(), False)) return importer.find_module(fullname)
def find_module(self, fullname): importer = _bootstrap.FileFinder(util.PATH, (_bootstrap.ExtensionFileLoader, imp.extension_suffixes(), False)) return importer.find_module(fullname)
def hook(self, entry): return _bootstrap.FileFinder.path_hook((_bootstrap.ExtensionFileLoader, imp.extension_suffixes(), False))(entry)
def hook(self, entry): return _bootstrap.FileFinder.path_hook( (_bootstrap.ExtensionFileLoader, imp.extension_suffixes(), False))(entry)