summaryrefslogtreecommitdiff
path: root/Lib/nntplib.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/nntplib.py')
-rw-r--r--Lib/nntplib.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/nntplib.py b/Lib/nntplib.py
index 0ee3ab094e..865041f5d9 100644
--- a/Lib/nntplib.py
+++ b/Lib/nntplib.py
@@ -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):