From 361c048b8fbd1c57597bcd8ee08c2cc0fc361253 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 13 May 1999 18:47:25 +0000 Subject: [PATCH] POP3.uidl(): Update docstring based on comments from Piers Lauder . --- Lib/poplib.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Lib/poplib.py b/Lib/poplib.py index 7b13b465718..251a71237cf 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)