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

article() commands.
This commit is contained in:
Guido van Rossum 1998-06-30 14:50:26 +00:00
parent 52a79e8e1c
commit 0f91183b1a

View 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):