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

Method _create_entity

Lib/xml/dom/minidom.py:1742–1745  ·  view source on GitHub ↗
(self, name, publicId, systemId, notationName)

Source from the content-addressed store, hash-verified

1740 # not supported by the W3C DOM specs:
1741
1742 def _create_entity(self, name, publicId, systemId, notationName):
1743 e = Entity(name, publicId, systemId, notationName)
1744 e.ownerDocument = self
1745 return e
1746
1747 def _create_notation(self, name, publicId, systemId):
1748 n = Notation(name, publicId, systemId)

Callers 1

entity_decl_handlerMethod · 0.80

Calls 1

EntityClass · 0.85

Tested by

no test coverage detected