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

Method createDocumentType

Lib/xml/dom/minidom.py:1489–1493  ·  view source on GitHub ↗
(self, qualifiedName, publicId, systemId)

Source from the content-addressed store, hash-verified

1487 return doc
1488
1489 def createDocumentType(self, qualifiedName, publicId, systemId):
1490 doctype = DocumentType(qualifiedName)
1491 doctype.publicId = publicId
1492 doctype.systemId = systemId
1493 return doctype
1494
1495 # DOM Level 3 (WD 9 April 2002)
1496

Callers 3

create_nonempty_doctypeFunction · 0.80
_clone_nodeFunction · 0.80

Calls 1

DocumentTypeClass · 0.85

Tested by 1

create_nonempty_doctypeFunction · 0.64