mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Fix the comments describing the return values of the head(), body(),
article() commands.
This commit is contained in:
parent
52a79e8e1c
commit
0f91183b1a
1 changed files with 6 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue