The page you navigated to does not exist, so we brought you to the closest page to it.
def add_sys_path(
path: typing.Union[str, os.PathLike],
) -> typing.Iterator[NoneType]
Temporarily add given path to sys.path.
| Parameter |
Type |
Description |
path |
typing.Union[str, os.PathLike] |
|
def just_load_modules(
pkgs: typing.List[str],
)
This one differs from the above in that we don’t yield anything, just load all the modules.
| Parameter |
Type |
Description |
pkgs |
typing.List[str] |
|
def load_object_from_module(
object_location: str,
) -> typing.Any
TODO: Handle corner cases, like where the first part is [] maybe
| Parameter |
Type |
Description |
object_location |
str |
|
def module_load_error_handler(
args,
kwargs,
)
| Parameter |
Type |
Description |
args |
*args |
|
kwargs |
**kwargs |
|