(self, namespaceURI, qualifiedName)
| 1730 | return e |
| 1731 | |
| 1732 | def createAttributeNS(self, namespaceURI, qualifiedName): |
| 1733 | prefix, localName = _nssplit(qualifiedName) |
| 1734 | a = Attr(qualifiedName, namespaceURI, localName, prefix) |
| 1735 | a.ownerDocument = self |
| 1736 | a.value = "" |
| 1737 | return a |
| 1738 | |
| 1739 | # A couple of implementation-specific helpers to create node types |
| 1740 | # not supported by the W3C DOM specs: |