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

Function parse

Lib/xml/sax/__init__.py:29–33  ·  view source on GitHub ↗
(source, handler, errorHandler=ErrorHandler())

Source from the content-addressed store, hash-verified

27
28
29def parse(source, handler, errorHandler=ErrorHandler()):
30 parser = make_parser()
31 parser.setContentHandler(handler)
32 parser.setErrorHandler(errorHandler)
33 parser.parse(source)
34
35def parseString(string, handler, errorHandler=ErrorHandler()):
36 import io

Callers 1

check_parseMethod · 0.90

Calls 5

setErrorHandlerMethod · 0.80
ErrorHandlerClass · 0.70
make_parserFunction · 0.70
setContentHandlerMethod · 0.45
parseMethod · 0.45

Tested by 1

check_parseMethod · 0.72

Used in the wild real call sites across dependent graphs

searching dependent graphs…