MCPcopy Create free account
hub / github.com/scanny/python-pptx / connect_children

Method connect_children

tests/unitutil/cxml.py:88–95  ·  view source on GitHub ↗

Make each of the elements appearing in *child_node_list* a child of this element.

(self, child_node_list)

Source from the content-addressed store, hash-verified

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):

Callers 2

connect_node_childrenFunction · 0.80

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected