]> granicus.if.org Git - python/commitdiff
Fix the comments describing the return values of the head(), body(),
authorGuido van Rossum <guido@python.org>
Tue, 30 Jun 1998 14:50:26 +0000 (14:50 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 30 Jun 1998 14:50:26 +0000 (14:50 +0000)
article() commands.

Lib/nntplib.py

index 0ee3ab094e75d1ae9c0258a50b0b3ff8f61feee6..865041f5d98193da63d168e17795529aa95655f4 100644 (file)
@@ -277,6 +277,8 @@ class NNTP:
        # - id: article number or message id
        # Returns:
        # - resp: server response if succesful
+       # - nr: article number
+       # - id: message id
        # - list: the lines of the article's header
 
        def head(self, id):
@@ -286,6 +288,8 @@ class NNTP:
        # - id: article number or message id
        # Returns:
        # - resp: server response if succesful
+       # - nr: article number
+       # - id: message id
        # - list: the lines of the article's body
 
        def body(self, id):
@@ -295,6 +299,8 @@ class NNTP:
        # - id: article number or message id
        # Returns:
        # - resp: server response if succesful
+       # - nr: article number
+       # - id: message id
        # - list: the lines of the article
 
        def article(self, id):