Check if fullname is a package. Raise ImportError if fullname is not found
(self, fullname)
| 577 | pass |
| 578 | |
| 579 | def is_package(self, fullname): |
| 580 | """Check if fullname is a package. Raise ImportError if fullname is not found""" |
| 581 | path = self._cache_module_path(fullname) |
| 582 | if isinstance(path, set): |
| 583 | return True |
| 584 | if isinstance(path, str): |
| 585 | return False |
| 586 | raise ImportError(fullname) |
| 587 | |
| 588 | def iter_modules(self, package_prefix, prefix): |
| 589 | paths = self._cache_module_path(package_prefix.rstrip('.')) |
no test coverage detected