class documentation
This class is only an adapter for some System methods related to module building.
| Method | __init__ |
Create the builder. |
| Method | add |
Add a module or package from file system path to the pydoctor system. If the path points to a directory, adds all submodules recursively. |
| Method | add |
Add a module from text to the system. |
| Method | build |
Build the modules. |
| Instance Variable | system |
Undocumented |
| Instance Variable | _added |
Undocumented |
overrides
pydoctor.model.ISystemBuilder.addModuleAdd a module or package from file system path to the pydoctor system. If the path points to a directory, adds all submodules recursively.
| Raises | |
SystemBuildingError | If there is an error while adding the module/package. |
def addModuleString(self, text:
str, modname: str, parent_name: str | None = None, is_package: bool = False):
(source)
¶
Add a module from text to the system.