MCPcopy Create free account
hub / github.com/STIXProject/python-stix / build

Method build

stix/bindings/incident.py:1931–1937  ·  view source on GitHub ↗
(self, node)

Source from the content-addressed store, hash-verified

1929 for Related_Observable_ in self.Related_Observable:
1930 Related_Observable_.export(lwrite, level, nsmap, namespace_, name_='Related_Observable', pretty_print=pretty_print)
1931 def build(self, node):
1932 self.__sourcenode__ = node
1933 already_processed = set()
1934 self.buildAttributes(node, node.attrib, already_processed)
1935 for child in node:
1936 nodeName_ = Tag_pattern_.match(child.tag).groups()[-1]
1937 self.buildChildren(child, node, nodeName_)
1938 def buildAttributes(self, node, attrs, already_processed):
1939 super(RelatedObservablesType, self).buildAttributes(node, attrs, already_processed)
1940 def buildChildren(self, child_, node, nodeName_, fromsubclass_=False):

Callers

nothing calls this directly

Calls 2

buildAttributesMethod · 0.95
buildChildrenMethod · 0.95

Tested by

no test coverage detected