Lines Matching refs:minidom
1 # test for xml.dom.minidom
10 import xml.dom.minidom
12 from xml.dom.minidom import parse, Attr, Node, Document, parseString
13 from xml.dom.minidom import getDOMImplementation
36 notation = xml.dom.minidom.Notation("my-notation", None,
39 entity = xml.dom.minidom.Entity("my-entity", None,
431 d="""<foo xmlns:minidom='http://pyxml.sf.net/minidom'>
432 <minidom:myelem/>
435 elems = dom.getElementsByTagNameNS("http://pyxml.sf.net/minidom",
438 and elems[0].namespaceURI == "http://pyxml.sf.net/minidom"
440 and elems[0].prefix == "minidom"
441 and elems[0].tagName == "minidom:myelem"
442 and elems[0].nodeName == "minidom:myelem")
859 document = xml.dom.minidom.parseString("""
1354 # builders used with minidom add comments to the DOM.
1355 doc = xml.dom.minidom.getDOMImplementation().createDocument(