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

Method parse

Lib/xml/sax/saxutils.py:306–311  ·  view source on GitHub ↗
(self, source)

Source from the content-addressed store, hash-verified

304 # XMLReader methods
305
306 def parse(self, source):
307 self._parent.setContentHandler(self)
308 self._parent.setErrorHandler(self)
309 self._parent.setEntityResolver(self)
310 self._parent.setDTDHandler(self)
311 self._parent.parse(source)
312
313 def setLocale(self, locale):
314 self._parent.setLocale(locale)

Callers

nothing calls this directly

Calls 4

setErrorHandlerMethod · 0.80
setEntityResolverMethod · 0.80
setDTDHandlerMethod · 0.80
setContentHandlerMethod · 0.45

Tested by

no test coverage detected