diff options
author | Fred Drake <fdrake@acm.org> | 1999-05-13 18:47:25 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-05-13 18:47:25 (GMT) |
commit | 361c048b8fbd1c57597bcd8ee08c2cc0fc361253 (patch) | |
tree | 94934601d460bb70da166e2ee4738be2eb0569b8 /Lib/poplib.py | |
parent | dab44682c2974d504143d69c00f78fa7719f7810 (diff) | |
download | cpython-361c048b8fbd1c57597bcd8ee08c2cc0fc361253.zip cpython-361c048b8fbd1c57597bcd8ee08c2cc0fc361253.tar.gz cpython-361c048b8fbd1c57597bcd8ee08c2cc0fc361253.tar.bz2 |
POP3.uidl(): Update docstring based on comments from Piers Lauder
<piers@cs.su.oz.au>.
Diffstat (limited to 'Lib/poplib.py')
-rw-r--r-- | Lib/poplib.py | 5 |
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) |