diff options
author | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
commit | 55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch) | |
tree | a0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/nntplib.rst | |
parent | 1617457cff847fed9fadb01f1acf6ba8bb621726 (diff) | |
download | cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2 |
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/nntplib.rst')
-rw-r--r-- | Doc/library/nntplib.rst | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Doc/library/nntplib.rst b/Doc/library/nntplib.rst index faa5115..ef5a6e9 100644 --- a/Doc/library/nntplib.rst +++ b/Doc/library/nntplib.rst @@ -51,7 +51,7 @@ headers):: The module itself defines the following items: -.. class:: NNTP(host[, port [, user[, password [, readermode] [, usenetrc]]]]) +.. class:: NNTP(host[, port [, user[, password [, readermode][, usenetrc]]]]) Return a new instance of the :class:`NNTP` class, representing a connection to the NNTP server running on host *host*, listening at port *port*. The @@ -66,9 +66,6 @@ The module itself defines the following items: :exc:`NNTPPermanentError`\ s, you might need to set *readermode*. *readermode* defaults to ``None``. *usenetrc* defaults to ``True``. - .. versionchanged:: 2.4 - *usenetrc* argument added. - .. exception:: NNTPError @@ -185,8 +182,6 @@ indicates an error, the method raises one of the above exceptions. strings). Return a pair ``(response, list)``, where *list* is a list of tuples containing ``(name, title)``. - .. versionadded:: 2.4 - .. method:: NNTP.description(group) @@ -197,8 +192,6 @@ indicates an error, the method raises one of the above exceptions. This elides the response code from the server. If the response code is needed, use :meth:`descriptions`. - .. versionadded:: 2.4 - .. method:: NNTP.group(name) |