class documentation
class DanglingReferencesVisitor(nodes.SparseNodeVisitor): (source)
Constructor: DanglingReferencesVisitor(document, unknown_reference_resolvers)
Undocumented
| Method | __init__ |
Undocumented |
| Method | unknown |
Called when entering unknown Node types. |
| Method | visit |
Undocumented |
| Instance Variable | document |
Undocumented |
| Instance Variable | unknown |
Undocumented |
Inherited from NodeVisitor (via SparseNodeVisitor):
| Method | dispatch |
Call self."depart_ + node class name" with node as parameter. If the depart_... method does not exist, call self.unknown_departure. |
| Method | dispatch |
Call self."visit_ + node class name" with node as parameter. If the visit_... method does not exist, call self.unknown_visit. |
| Method | unknown |
Called before exiting unknown Node types. |
| Class Variable | optional |
Tuple containing node class names (as strings). |
overrides
docutils.nodes.NodeVisitor.unknown_visitCalled when entering unknown Node types.
Raise an exception unless overridden.