MCPcopy Index your code
hub / github.com/RustPython/RustPython / list

Method list

Lib/poplib.py:245–256  ·  view source on GitHub ↗

Request listing, return result. Result without a message number argument is in form ['response', ['mesg_num octets', ...], octets]. Result when a message number argument is given is a single response: the "scan listing" for that message.

(self, which=None)

Source from the content-addressed store, hash-verified

243
244
245 def list(self, which=None):
246 """Request listing, return result.
247
248 Result without a message number argument is in form
249 ['response', ['mesg_num octets', ...], octets].
250
251 Result when a message number argument is given is a
252 single response: the "scan listing" for that message.
253 """
254 if which is not None:
255 return self._shortcmd('LIST %s' % which)
256 return self._longcmd('LIST')
257
258
259 def retr(self, which):

Callers 15

poplib.pyFile · 0.45
test_repr_lockMethod · 0.45
test_repr_rlockMethod · 0.45
DummyListMethod · 0.45
test_listMethod · 0.45
test_list_iterMethod · 0.45
test_nested_queueMethod · 0.45
test_listMethod · 0.45
test_listMethod · 0.45

Calls 2

_shortcmdMethod · 0.95
_longcmdMethod · 0.95

Tested by 15

test_repr_lockMethod · 0.36
test_repr_rlockMethod · 0.36
DummyListMethod · 0.36
test_listMethod · 0.36
test_list_iterMethod · 0.36
test_nested_queueMethod · 0.36
test_listMethod · 0.36
test_listMethod · 0.36
test_listMethod · 0.36