Kaydet (Commit) 8d5bef7f authored tarafından Guido van Rossum's avatar Guido van Rossum

There was a confusion in my checkin of the code to support list() with

and without a message number argument: the argument was called 'msg'
but the code expected it to be called 'which'.  In line with the other
methods, I've renamed the argument to 'which', and adapted the doc
string not to refer to 'msg'.
üst 4117e542
......@@ -196,14 +196,14 @@ class POP3:
return (numMessages, sizeMessages)
def list(self, msg=None):
def list(self, which=None):
"""Request listing, return result.
Result without a msg argument is in form
Result without a message number argument is in form
['response', ['mesg_num octets', ...]].
Result when a msg argument is given is a single response:
the "scan listing" for that message.
Result when a message number argument is given is a
single response: the "scan listing" for that message.
"""
if which:
return self._shortcmd('LIST %s' % which)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment