xml.etree.ElementTree.Element.makeelement()

makeelement(tag, attrib) Creates a new element object of the same type as this element. Do not call this method, use the

2016-10-07 17:47:59
xml.sax.xmlreader.XMLReader.getFeature()

XMLReader.getFeature(featurename) Return the current setting for feature featurename. If the feature is not recognized

2016-10-07 17:48:29
xml.dom.Document.createTextNode()

Document.createTextNode(data) Create and return a text node containing the data passed as a parameter. As with the other creation

2016-10-07 17:47:41
xml.sax.xmlreader.InputSource.getPublicId()

InputSource.getPublicId() Returns the public identifier of this InputSource.

2016-10-07 17:48:27
xml.etree.ElementTree.dump()

xml.etree.ElementTree.dump(elem) Writes an element tree or element structure to sys.stdout. This function should be used for

2016-10-07 17:47:56
xml.etree.ElementTree.XMLPullParser

class xml.etree.ElementTree.XMLPullParser(events=None) A pull parser suitable for non-blocking applications. Its input-side

2016-10-07 17:48:07
xml.dom.Node.isSameNode()

Node.isSameNode(other) Returns true if other refers to the same node as this node. This is especially useful for DOM

2016-10-07 17:47:51
xml.sax.handler.ContentHandler.characters()

ContentHandler.characters(content) Receive notification of character data. The Parser will call

2016-10-07 17:48:17
xml.etree.ElementTree.Element.items()

items() Returns the element attributes as a sequence of (name, value) pairs. The attributes are returned in an arbitrary order

2016-10-07 17:47:59
xml.sax.handler.DTDHandler

class xml.sax.handler.DTDHandler Handle DTD events. This interface specifies only those DTD

2016-10-07 17:48:19