Lines Matching refs:modname
263 def _import_one(self, parent, modname, fqname): argument
273 result = self.get_code(parent, modname, fqname)
281 setattr(parent, modname, module)
370 def get_code(self, parent, modname, fqname): argument
505 def get_code(self, parent, modname, fqname): argument
511 if imp.is_builtin(modname):
513 elif imp.is_frozen(modname):
520 module = imp.load_module(modname, None, modname, ('', '', type))
542 def get_code(self, parent, modname, fqname): argument
550 code = self._import_pathname(_os_path_join(submodule_path, modname), fqname)
553 return self._import_pathname(_os_path_join(parent.__pkgdir__, modname),