(self, *children)
| 135 | """Branch/inner node of a pattern tree.""" |
| 136 | |
| 137 | def __init__(self, *children): |
| 138 | self.children = list(children) |
| 139 | |
| 140 | def __repr__(self): |
| 141 | return '%s(%s)' % (self.__class__.__name__, |
nothing calls this directly
no outgoing calls
no test coverage detected