diff options
author | Georg Brandl <georg@python.org> | 2005-08-05 21:01:58 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-08-05 21:01:58 +0000 |
commit | 2772c679e9c9503965301541ffa2a730c2527976 (patch) | |
tree | efdd2d30da591074aec1a457c5bae3627463bec5 /Lib/poplib.py | |
parent | * Improve a variable name: entry0 --> table. (diff) | |
download | cpython-2772c679e9c9503965301541ffa2a730c2527976.tar.gz cpython-2772c679e9c9503965301541ffa2a730c2527976.tar.bz2 cpython-2772c679e9c9503965301541ffa2a730c2527976.zip |
bug [ 1252706 ] poplib list() docstring fix (and docs too)
Diffstat (limited to 'Lib/poplib.py')
-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 1475bdce875..202c6e00548 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. |