[Python-checkins] python/dist/src/Lib nntplib.py,1.39,1.40

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Sun Jul 17 22:27:43 CEST 2005


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16057/Lib

Modified Files:
	nntplib.py 
Log Message:
- Bug #1015140: disambiguated the term "article id" in nntplib docs and
  docstrings to either "article number" or "message id".




Index: nntplib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/nntplib.py,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -d -r1.39 -r1.40
--- nntplib.py	3 Aug 2004 14:36:32 -0000	1.39
+++ nntplib.py	17 Jul 2005 20:27:40 -0000	1.40
@@ -281,7 +281,7 @@
         - time: string 'hhmmss' indicating the time
         Return:
         - resp: server response if successful
-        - list: list of article ids"""
+        - list: list of message ids"""
 
         cmd = 'NEWNEWS ' + group + ' ' + date + ' ' + time
         return self.longcmd(cmd, file)
@@ -391,7 +391,7 @@
         Returns:
         - resp: server response if successful
         - nr:   the article number
-        - id:   the article id"""
+        - id:   the message id"""
 
         return self.statcmd('STAT ' + id)
 



More information about the Python-checkins mailing list