(self, tag, colspan=None, rowspan=None, content=None, *children)
| 13 | |
| 14 | class TableTree(Tree): |
| 15 | def __init__(self, tag, colspan=None, rowspan=None, content=None, *children): |
| 16 | self.tag = tag |
| 17 | self.colspan = colspan |
| 18 | self.rowspan = rowspan |
| 19 | self.content = content |
| 20 | self.children = list(children) |
| 21 | |
| 22 | def bracket(self): |
| 23 | """Show tree using brackets notation""" |
nothing calls this directly
no outgoing calls
no test coverage detected