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

Method _pop_message

Lib/email/feedparser.py:210–216  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

208 self._last = msg
209
210 def _pop_message(self):
211 retval = self._msgstack.pop()
212 if self._msgstack:
213 self._cur = self._msgstack[-1]
214 else:
215 self._cur = None
216 return retval
217
218 def _parsegen(self):
219 # Create a new message and start by parsing headers.

Callers 2

closeMethod · 0.95
_parsegenMethod · 0.95

Calls 1

popMethod · 0.45

Tested by

no test coverage detected