We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2e0983 commit 53b4db1Copy full SHA for 53b4db1
2 files changed
src/_griffe/loader.py
@@ -271,6 +271,8 @@ def resolve_aliases(
271
def expand_exports(self, module: Module, seen: set | None = None) -> None:
272
"""Expand exports: try to recursively expand all module exports (`__all__` values).
273
274
+ See also: [`Module.exports`][griffe.Module.exports].
275
+
276
Parameters:
277
module: The module to recurse on.
278
seen: Used to avoid infinite recursion.
@@ -316,6 +318,8 @@ def expand_wildcards(
316
318
) -> None:
317
319
"""Expand wildcards: try to recursively expand all found wildcards.
320
321
+ See also: [`Alias.wildcard`][griffe.Alias.wildcard].
322
323
324
obj: The object and its members to recurse on.
325
external: When true, try to load unspecified modules to expand wildcards.
0 commit comments