Return sorted function names for the given module.
(self, module_name: str)
| 99 | return modules |
| 100 | |
| 101 | def functions_for_module(self, module_name: str) -> List[str]: |
| 102 | """Return sorted function names for the given module.""" |
| 103 | |
| 104 | self._ensure_loaded() |
| 105 | return list(self._module_index.get(module_name, [])) |
| 106 | |
| 107 | @property |
| 108 | def load_error(self) -> Exception | None: |
no test coverage detected