(self, node)
| 698 | for Exploit_ in self.Exploit: |
| 699 | Exploit_.export(lwrite, level, nsmap, namespace_, name_='Exploit', pretty_print=pretty_print) |
| 700 | def build(self, node): |
| 701 | self.__sourcenode__ = node |
| 702 | already_processed = set() |
| 703 | self.buildAttributes(node, node.attrib, already_processed) |
| 704 | for child in node: |
| 705 | nodeName_ = Tag_pattern_.match(child.tag).groups()[-1] |
| 706 | self.buildChildren(child, node, nodeName_) |
| 707 | def buildAttributes(self, node, attrs, already_processed): |
| 708 | pass |
| 709 | def buildChildren(self, child_, node, nodeName_, fromsubclass_=False): |
nothing calls this directly
no test coverage detected