class documentation
class PEPZeroSpecial(nodes.SparseNodeVisitor): (source)
Constructor: PEPZeroSpecial(document)
Perform the special processing needed by PEP 0:
- Mask email addresses.
- Link PEP numbers in the second column of 4-column tables to the PEPs themselves.
Method | unknown |
Called when entering unknown Node types. |
Method | visit |
Undocumented |
Method | visit |
Undocumented |
Method | visit |
Undocumented |
Method | visit |
Undocumented |
Method | visit |
Undocumented |
Method | visit |
Undocumented |
Instance Variable | entry |
Undocumented |
Instance Variable | pep |
Undocumented |
Inherited from NodeVisitor
(via SparseNodeVisitor
):
Method | __init__ |
Undocumented |
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). |
Instance Variable | document |
Undocumented |
overrides
docutils.nodes.NodeVisitor.unknown_visit
Called when entering unknown Node
types.
Raise an exception unless overridden.