Path 1: 487 calls (1.0)
→ child Text (229) Paragraph (227) Section (16) Table (15)
1def append(self, child: VNode) -> None: 2 """Add a node to children.""" 3 assert child not in self.parents() 4 self.children.append(child) 5 child.parent = self