Commit 0f91183b authored by Guido van Rossum's avatar Guido van Rossum

Fix the comments describing the return values of the head(), body(),

article() commands.
parent 52a79e8e
...@@ -277,6 +277,8 @@ class NNTP: ...@@ -277,6 +277,8 @@ class NNTP:
# - id: article number or message id # - id: article number or message id
# Returns: # Returns:
# - resp: server response if succesful # - resp: server response if succesful
# - nr: article number
# - id: message id
# - list: the lines of the article's header # - list: the lines of the article's header
def head(self, id): def head(self, id):
...@@ -286,6 +288,8 @@ class NNTP: ...@@ -286,6 +288,8 @@ class NNTP:
# - id: article number or message id # - id: article number or message id
# Returns: # Returns:
# - resp: server response if succesful # - resp: server response if succesful
# - nr: article number
# - id: message id
# - list: the lines of the article's body # - list: the lines of the article's body
def body(self, id): def body(self, id):
...@@ -295,6 +299,8 @@ class NNTP: ...@@ -295,6 +299,8 @@ class NNTP:
# - id: article number or message id # - id: article number or message id
# Returns: # Returns:
# - resp: server response if succesful # - resp: server response if succesful
# - nr: article number
# - id: message id
# - list: the lines of the article # - list: the lines of the article
def article(self, id): def article(self, id):
......
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