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

Method uidl

Lib/poplib.py:361–370  ·  view source on GitHub ↗

Return message digest (unique id) list. If 'which', result contains unique id for that message in the form 'response mesgnum uid', otherwise result is the list ['response', ['mesgnum uid', ...], octets]

(self, which=None)

Source from the content-addressed store, hash-verified

359
360
361 def uidl(self, which=None):
362 """Return message digest (unique id) list.
363
364 If 'which', result contains unique id for that message
365 in the form 'response mesgnum uid', otherwise result is
366 the list ['response', ['mesgnum uid', ...], octets]
367 """
368 if which is not None:
369 return self._shortcmd('UIDL %s' % which)
370 return self._longcmd('UIDL')
371
372
373 def utf8(self):

Callers 1

test_uidlMethod · 0.80

Calls 2

_shortcmdMethod · 0.95
_longcmdMethod · 0.95

Tested by 1

test_uidlMethod · 0.64