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

Method uidl

Lib/poplib.py:359–368  ·  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

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

Callers 1

test_uidlMethod · 0.80

Calls 2

_shortcmdMethod · 0.95
_longcmdMethod · 0.95

Tested by 1

test_uidlMethod · 0.64