| Method Summary |
| |
__init__(self,
verbosity,
document_bases,
document_autogen_vars,
inheritance_groups,
inherit_groups)
Create a new empty documentation map. |
ObjDoc
|
__getitem__(self,
key)
Return the documentation for the given object; or the object identified by
key, if key is a UID. |
| |
__repr__(self)
|
None
|
add(self,
obj)
Add the documentation for an object, and everything contained by that
object, to this documentation map. |
None
|
add_one(self,
objID)
Add an object's documentation to this documentation map. |
ObjDoc or None
|
documented_ancestor(self,
method_uid)
Returns the documentation for the closest ancestor of
method_uid that defines a docstring. |
| |
sorted_keys(self)
|
list of UID
|
top(self)
Return the list of top-level objects documented by this documentation
map. |
| |
_add(self,
objID)
|
boolean
|
_toplevel(self,
uid)
Return true if the object identified by uid is not contained (as
a sub-package, module contents, class contents, etc.) by any other object
in this docmap. |
| Inherited from UserDict |
| |
__cmp__(self,
dict)
|
| |
__contains__(self,
key)
|
| |
__delitem__(self,
key)
|
| |
__len__(self)
|
| |
__setitem__(self,
key,
item)
|
| |
clear(self)
|
| |
copy(self)
|
| |
fromkeys(cls,
iterable,
value)
(Class method)
|
| |
get(self,
key,
failobj)
|
| |
has_key(self,
key)
|
| |
items(self)
|
| |
iteritems(self)
|
| |
iterkeys(self)
|
| |
itervalues(self)
|
| |
keys(self)
|
| |
pop(self,
key,
*args)
|
| |
popitem(self)
|
| |
setdefault(self,
key,
failobj)
|
| |
update(self,
dict)
|
| |
values(self)
|