From: Fred Drake Date: Thu, 13 May 1999 18:47:25 +0000 (+0000) Subject: POP3.uidl(): Update docstring based on comments from Piers Lauder X-Git-Tag: v1.6a1~1354 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=361c048b8fbd1c57597bcd8ee08c2cc0fc361253;p=python POP3.uidl(): Update docstring based on comments from Piers Lauder . --- diff --git a/Lib/poplib.py b/Lib/poplib.py index 7b13b46571..251a71237c 100644 --- a/Lib/poplib.py +++ b/Lib/poplib.py @@ -293,8 +293,9 @@ class POP3: def uidl(self, which=None): """Return message digest (unique id) list. - If 'which', result contains unique id for that message, - otherwise result is list ['response', ['mesgnum uid', ...], octets] + If 'which', result contains unique id for that message + in the form 'response mesgnum uid', otherwise result is + the list ['response', ['mesgnum uid', ...], octets] """ if which: return self._shortcmd('UIDL %s' % which)