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

Method __init__

Lib/xml/dom/pulldom.py:205–211  ·  view source on GitHub ↗
(self, stream, parser, bufsize)

Source from the content-addressed store, hash-verified

203
204class DOMEventStream:
205 def __init__(self, stream, parser, bufsize):
206 self.stream = stream
207 self.parser = parser
208 self.bufsize = bufsize
209 if not hasattr(self.parser, 'feed'):
210 self.getEvent = self._slurp
211 self.reset()
212
213 def reset(self):
214 self.pulldom = PullDOM()

Callers

nothing calls this directly

Calls 1

resetMethod · 0.95

Tested by

no test coverage detected