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

Method feed

Lib/email/feedparser.py:173–176  ·  view source on GitHub ↗

Push more data into the parser.

(self, data)

Source from the content-addressed store, hash-verified

171 self._headersonly = True
172
173 def feed(self, data):
174 """Push more data into the parser."""
175 self._input.push(data)
176 self._call_parse()
177
178 def _call_parse(self):
179 try:

Callers 3

parseMethod · 0.95
parseMethod · 0.95
feedMethod · 0.45

Calls 2

_call_parseMethod · 0.95
pushMethod · 0.45

Tested by 1

parseMethod · 0.76