]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix comments for list command
authorGuido van Rossum <guido@python.org>
Tue, 10 Jan 1995 10:35:55 +0000 (10:35 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 10 Jan 1995 10:35:55 +0000 (10:35 +0000)
Lib/nntplib.py

index fb08b0cde05fba4ed66bf5656da0f4cefa472fa7..fafef57d7cb810bdae95ba0e36ed37f3eb8fe14c 100644 (file)
@@ -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