|
Call Graph |
Return a list of all APIDoc s that are directly linked
from this APIDoc (i.e., are contained or pointed to by one
or more of this APIDoc 's attributes.)
Keyword argument filters can be used to selectively
exclude certain categories of attribute value. For example, using
includes=False will exclude variables that were imported
from other modules; and subclasses=False will exclude
subclasses. The filter categories currently supported by epydoc are:
-
imports : Imported variables.
-
packages : Containing packages for modules.
-
submodules : Contained submodules for packages.
-
bases : Bases for classes.
-
subclasses : Subclasses for classes.
-
variables : All variables.
-
private : Private variables.
-
overrides : Points from class variables to the variables
they override. This filter is False by default.
- Overrides:
APIDoc.apidoc_links
- (inherited documentation)
|