(doc, parent, name, ns, value)
| 40 | |
| 41 | |
| 42 | def addElementWithText(doc, parent, name, ns, value): |
| 43 | el = doc.createElementNS(ns, name) |
| 44 | text = doc.createTextNode(value) |
| 45 | el.appendChild(text) |
| 46 | parent.appendChild(el) |
| 47 | |
| 48 | |
| 49 | def addEPR(doc, node, epr): |
no outgoing calls
no test coverage detected