Make each of the elements appearing in *child_node_list* a child of this element.
(self, child_node_list)
| 86 | return "<%s/>" % self._tagname # pragma: no cover |
| 87 | |
| 88 | def connect_children(self, child_node_list): |
| 89 | """ |
| 90 | Make each of the elements appearing in *child_node_list* a child of |
| 91 | this element. |
| 92 | """ |
| 93 | for node in child_node_list: |
| 94 | child = node.element |
| 95 | self._children.append(child) |
| 96 | |
| 97 | @classmethod |
| 98 | def from_token(cls, token): |
no test coverage detected