summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/poplib.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/poplib.py b/Lib/poplib.py
index 7b13b46..251a712 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)