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

Method retr

Lib/poplib.py:261–266  ·  view source on GitHub ↗

Retrieve whole message number 'which'. Result is in form ['response', ['line', ...], octets].

(self, which)

Source from the content-addressed store, hash-verified

259
260
261 def retr(self, which):
262 """Retrieve whole message number 'which'.
263
264 Result is in form ['response', ['line', ...], octets].
265 """
266 return self._longcmd('RETR %s' % which)
267
268
269 def dele(self, which):

Callers 1

poplib.pyFile · 0.45

Calls 1

_longcmdMethod · 0.95

Tested by

no test coverage detected