MCPcopy Index your code
hub / github.com/python/cpython / DocumentFragment

Class DocumentFragment

Lib/xml/dom/minidom.py:336–351  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

334 return rc
335
336class DocumentFragment(Node):
337 nodeType = Node.DOCUMENT_FRAGMENT_NODE
338 nodeName = "#document-fragment"
339 nodeValue = None
340 attributes = None
341 parentNode = None
342 _child_node_types = (Node.ELEMENT_NODE,
343 Node.TEXT_NODE,
344 Node.CDATA_SECTION_NODE,
345 Node.ENTITY_REFERENCE_NODE,
346 Node.PROCESSING_INSTRUCTION_NODE,
347 Node.COMMENT_NODE,
348 Node.NOTATION_NODE)
349
350 def __init__(self):
351 self.childNodes = NodeList()
352
353
354class Attr(Node):

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…