xml.etree.ElementTree.XML()

xml.etree.ElementTree.XML(text, parser=None) Parses an XML section from a string constant. This function can be used to embed

2016-10-07 17:48:06
xml.sax.handler.DTDHandler.notationDecl()

DTDHandler.notationDecl(name, publicId, systemId) Handle a notation declaration event.

2016-10-07 17:48:19
xml.sax.parseString()

xml.sax.parseString(string, handler, error_handler=handler.ErrorHandler()) Similar to parse(), but parses from

2016-10-07 17:48:22
xml.dom.Document.createProcessingInstruction()

Document.createProcessingInstruction(target, data) Create and return a processing instruction node containing the target

2016-10-07 17:47:41
html.parser.HTMLParser.handle_entityref()

HTMLParser.handle_entityref(name) This method is called to process a named character reference of the form &name;

2016-10-07 17:33:48
xml.etree.ElementTree.XMLParser.doctype()

doctype(name, pubid, system) Deprecated since version 3.2: Define

2016-10-07 17:48:06
xml.etree.ElementTree.ElementTree.iterfind()

iterfind(match, namespaces=None) Same as Element.iterfind(), starting at the root of the tree.

2016-10-07 17:48:02
xml.dom.NodeList.item()

NodeList.item(i) Return the i‘th item from the sequence, if there is one, or None. The index i

2016-10-07 17:47:53
xml.dom.DOMImplementation.hasFeature()

DOMImplementation.hasFeature(feature, version) Return true if the feature identified by the pair of strings feature

2016-10-07 17:47:43
xml.parsers.expat.xmlparser.NotationDeclHandler()

xmlparser.NotationDeclHandler(notationName, base, systemId, publicId) Called for notation declarations. notationName

2016-10-07 17:48:13