From: Georg Brandl Date: Fri, 5 Aug 2005 21:01:58 +0000 (+0000) Subject: bug [ 1252706 ] poplib list() docstring fix (and docs too) X-Git-Tag: v2.5a0~1539 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2772c679e9c9503965301541ffa2a730c2527976;p=thirdparty%2FPython%2Fcpython.git bug [ 1252706 ] poplib list() docstring fix (and docs too) --- diff --git a/Doc/lib/libpoplib.tex b/Doc/lib/libpoplib.tex index e10ee341a117..25570ae7250d 100644 --- a/Doc/lib/libpoplib.tex +++ b/Doc/lib/libpoplib.tex @@ -108,8 +108,8 @@ Get mailbox status. The result is a tuple of 2 integers: \begin{methoddesc}{list}{\optional{which}} Request message list, result is in the form -\code{(\var{response}, ['mesg_num octets', ...])}. If \var{which} is -set, it is the message to list. +\code{(\var{response}, ['mesg_num octets', ...], \var{octets})}. +If \var{which} is set, it is the message to list. \end{methoddesc} \begin{methoddesc}{retr}{which} diff --git a/Lib/poplib.py b/Lib/poplib.py index 1475bdce875d..202c6e00548d 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.