class PEPZeroSpecial(nodes.SparseNodeVisitor):
Perform the special processing needed by PEP 0:
Method | unknown_visit |
Called when entering unknown Node types. |
Method | visit_colspec |
Undocumented |
Method | visit_entry |
Undocumented |
Method | visit_field_list |
Undocumented |
Method | visit_reference |
Undocumented |
Method | visit_row |
Undocumented |
Method | visit_tgroup |
Undocumented |
Instance Variable | entry |
Undocumented |
Instance Variable | pep_table |
Undocumented |
Inherited from NodeVisitor
(via SparseNodeVisitor
):
Method | __init__ |
Undocumented |
Method | dispatch_departure |
Call self."depart_ + node class name" with node as parameter. If the depart_... method does not exist, call self.unknown_departure. |
Method | dispatch_visit |
Call self."visit_ + node class name" with node as parameter. If the visit_... method does not exist, call self.unknown_visit. |
Method | unknown_departure |
Called before exiting unknown Node types. |
Class Variable | optional |
Tuple containing node class names (as strings). |
Instance Variable | document |
Undocumented |
docutils.nodes.NodeVisitor.unknown_visit
Called when entering unknown Node
types.
Raise an exception unless overridden.