(self, module_info: pkgutil.ModuleInfo)
| 163 | if self.is_suggestion_match(module_name, prefix)] |
| 164 | |
| 165 | def _is_stdlib_module(self, module_info: pkgutil.ModuleInfo) -> bool: |
| 166 | return (isinstance(module_info.module_finder, FileFinder) |
| 167 | and module_info.module_finder.path == self._stdlib_path) |
| 168 | |
| 169 | def find_attributes(self, path: str, prefix: str) -> tuple[list[str], CompletionAction | None]: |
| 170 | """Find all attributes of module 'path' that start with 'prefix'.""" |
no outgoing calls
no test coverage detected