class documentation

class PartialVisitor(Visitor[T]): (source)

View In Hierarchy

Visitor class that do not have to define all possible visit_.* methods since it overrides the default behaviour of unknown_visit() and unknown_departure() not to raise NotImplementedError.

Method unknown_departure Undocumented
Method unknown_visit Undocumented
def unknown_departure(self, ob): (source)

Undocumented

Parameters
ob:TUndocumented
def unknown_visit(self, ob): (source)

Undocumented

Parameters
ob:TUndocumented