From: Guido van Rossum Date: Tue, 10 Jan 1995 10:35:55 +0000 (+0000) Subject: fix comments for list command X-Git-Tag: v1.2b1~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=be9f212f7e70c650e3717f2bbe55bdc22b9c8e9c;p=thirdparty%2FPython%2Fcpython.git fix comments for list command --- diff --git a/Lib/nntplib.py b/Lib/nntplib.py index fb08b0cde05f..fafef57d7cb8 100644 --- a/Lib/nntplib.py +++ b/Lib/nntplib.py @@ -170,12 +170,12 @@ class NNTP: # Process a LIST command. Return: # - resp: server response if succesful - # - list: list of (group, first, last, flag) (strings) + # - list: list of (group, last, first, flag) (strings) def list(self): resp, list = self.longcmd('LIST') for i in range(len(list)): - # Parse lines into "group first last flag" + # Parse lines into "group last first flag" list[i] = string.split(list[i]) return resp, list