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

Method feed

Lib/html/parser.py:162–169  ·  view source on GitHub ↗

r"""Feed data to the parser. Call this as often as you want, with as little or as much text as you want (may include '\n').

(self, data)

Source from the content-addressed store, hash-verified

160 super().reset()
161
162 def feed(self, data):
163 r"""Feed data to the parser.
164
165 Call this as often as you want, with as little or as much text
166 as you want (may include '\n').
167 """
168 self.rawdata = self.rawdata + data
169 self.goahead(0)
170
171 def close(self):
172 """Handle any buffered data."""

Callers 3

checkMethod · 0.95
get_ids_from_fileFunction · 0.45
__init__Method · 0.45

Calls 1

goaheadMethod · 0.95

Tested by 1

checkMethod · 0.76