diff options
author | Georg Brandl <georg@python.org> | 2005-08-05 21:02:43 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-08-05 21:02:43 (GMT) |
commit | 56566984dfe2724e1c8d24f4f3223018cb89800f (patch) | |
tree | 9f3137a892eb07d8dd4bc0bbcc43dc3ffd2741a2 /Lib | |
parent | 16bb9c905212a3c2b8e07030c65ffa71836ccb74 (diff) | |
download | cpython-56566984dfe2724e1c8d24f4f3223018cb89800f.zip cpython-56566984dfe2724e1c8d24f4f3223018cb89800f.tar.gz cpython-56566984dfe2724e1c8d24f4f3223018cb89800f.tar.bz2 |
backport patch [ 1252706 ] poplib list() docstring fix (and docs too)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/poplib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/poplib.py b/Lib/poplib.py index 1475bdc..202c6e0 100644 --- a/Lib/poplib.py +++ b/Lib/poplib.py @@ -219,7 +219,7 @@ class POP3: """Request listing, return result. Result without a message number argument is in form - ['response', ['mesg_num octets', ...]]. + ['response', ['mesg_num octets', ...], octets]. Result when a message number argument is given is a single response: the "scan listing" for that message. |