(element, tag, idx)
| 60 | return child |
| 61 | |
| 62 | def _get_child_or_insert(element, tag, idx): |
| 63 | child = _child(element, tag) |
| 64 | if child is None: |
| 65 | child = _Element(tag) |
| 66 | element.insert(idx, child) |
| 67 | return child |
| 68 | |
| 69 | def _nsmap(*prefixes): |
| 70 | """ |
no test coverage detected
searching dependent graphs…