(self)
| 38 | Skips objects with an @undoc decorator, or a name starting with '_'. |
| 39 | """ |
| 40 | def __init__(self): |
| 41 | ast.NodeVisitor.__init__(self) |
| 42 | self.classes = [] |
| 43 | self.classes_seen = set() |
| 44 | self.functions = [] |
| 45 | |
| 46 | @staticmethod |
| 47 | def has_undoc_decorator(node): |