Home | Trees | Index | Help |
|
---|
|
|
|||
__init__(self,
**kwargs)
Construct a new APIDoc object.
|
|||
apidoc_links(self,
**filters)
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.)
|
|||
init_sorted_variables(self)
Initialize the sorted_variables attribute, based on the variables and sort_spec attributes. |
|||
init_variable_groups(self)
Initialize the variable_groups attribute, based on the sorted_variables and group_specs attributes. |
|||
group_names(self)
Return a list of the group names defined by this namespace, in the order in which they should be listed, with no duplicates. |
|||
_init_grouping(self,
elts)
Divide a given a list of APIDoc objects into groups, as specified by self.group_specs. |
|||
Inherited from Inherited from Inherited from Inherited from |
|
|||
Inherited from |
|
|||
Inherited from |
|||
Information about Variables | |||
---|---|---|---|
variables | The contents of the namespace, encoded as a dictionary mapping
from identifiers to VariableDoc s. |
||
sorted_variables | A list of all variables defined by this namespace, in sorted order. | ||
sort_spec | The order in which variables should be listed, encoded as a list of names. | ||
group_specs | The groups that are defined by this namespace's docstrings. | ||
variable_groups | A dictionary specifying what group each variable belongs to. | ||
Value Representation | |||
Inherited from |
|||
Context | |||
Inherited from |
|||
Information about Imported Variables | |||
Docstrings | |||
Inherited from |
|||
Information Extracted from Docstrings | |||
Inherited from |
|||
Source Information | |||
Inherited from |
|
APIDoc object. Keyword arguments may be
used to initialize the new APIDoc 's attributes.
|
Return a list of all 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:
|
variables (including any inherited
variables for classes).
|
|
|
|
|
variablesThe contents of the namespace, encoded as a dictionary mapping from identifiers toVariableDoc s. This dictionary contains all
names defined by the namespace, including imported variables, aliased
variables, and variables inherited from base classes (once DocInheriter has added them).
|
sorted_variablesA list of all variables defined by this namespace, in sorted order. The elements of this list should exactly match the values of variables. The sort order for this list is defined as follows:
|
sort_specThe order in which variables should be listed, encoded as a list of names. Any variables whose names are not included in this list should be listed alphabetically, following the variables that are included.
|
group_specsThe groups that are defined by this namespace's docstrings.
elt_names is a list of element names
in that group. (An element can be a variable or a submodule.) A '*' in
an element name will match any string of characters.
|
variable_groupsA dictionary specifying what group each variable belongs to. The keys of the dictionary are group names, and the values are lists ofVariableDoc s. The order that groups should be listed in
should be taken from group_specs.
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 3.0alpha2 on Tue Apr 11 17:33:13 2006 | http://epydoc.sf.net |