diff options
author | Barry Warsaw <barry@python.org> | 2000-02-10 20:26:45 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2000-02-10 20:26:45 (GMT) |
commit | 41d84631ba53a484e79c4e1d4f0a968a986d8945 (patch) | |
tree | 1e5bbbaeb4cc3a15660d57b15c031e6b527461a4 | |
parent | 9dd78729459478023a46401d8f04e2dc3bf974e5 (diff) | |
download | cpython-41d84631ba53a484e79c4e1d4f0a968a986d8945.zip cpython-41d84631ba53a484e79c4e1d4f0a968a986d8945.tar.gz cpython-41d84631ba53a484e79c4e1d4f0a968a986d8945.tar.bz2 |
Document the API changes to the nntplib module (exceptions become
classes, NNTP.__init__() grows a new optional argument to set reader
mode on the server).
-rw-r--r-- | Doc/lib/libnntplib.tex | 54 |
1 files changed, 40 insertions, 14 deletions
diff --git a/Doc/lib/libnntplib.tex b/Doc/lib/libnntplib.tex index cc6dad5..dade6b7 100644 --- a/Doc/lib/libnntplib.tex +++ b/Doc/lib/libnntplib.tex @@ -53,31 +53,57 @@ valid headers): The module itself defines the following items: \begin{classdesc}{NNTP}{host\optional{, port - \optional{, user\optional{, password}}}} + \optional{, user\optional{, password + \optional{, readermode}}}}} Return a new instance of the \class{NNTP} class, representing a connection to the NNTP server running on host \var{host}, listening at port \var{port}. The default \var{port} is 119. If the optional \var{user} and \var{password} are provided, the \samp{AUTHINFO USER} and \samp{AUTHINFO PASS} commands are used to -identify and authenticate the user to the server. +identify and authenticate the user to the server. If the optional +flag \var{readermode} is true, then a \samp{mode reader} command is +sent before authentication is performed. Reader mode is sometimes +necessary if you are connecting to an NNTP server on the local machine +and intend to call reader-specific commands, such as \samp{group}. If +you get unexpected \code{NNTPPermanentError}s, you might need to set +\var{readermode}. \var{readermode} defaults to \code{None}. \end{classdesc} -\begin{excdesc}{error_reply} -Exception raised when an unexpected reply is received from the server. -\end{excdesc} +\begin{classdesc}{NNTPError}{} +Derived from the standard exception \code{Exception}, this is the base +class for all exceptions raised by the \code{nntplib} module. +\end{classdesc} + +\begin{classdesc}{NNTPReplyError}{} +Exception raised when an unexpected reply is received from the +server. For backwards compatibility, the exception \code{error_reply} +is equivalent to this class. +\end{classdesc} -\begin{excdesc}{error_temp} -Exception raised when an error code in the range 400--499 is received. -\end{excdesc} +\begin{classdesc}{NNTPTemporaryError}{} +Exception raised when an error code in the range 400--499 is +received. For backwards compatibility, the exception +\code{error_temp} is equivalent to this class. +\end{classdesc} -\begin{excdesc}{error_perm} -Exception raised when an error code in the range 500--599 is received. -\end{excdesc} +\begin{classdesc}{NNTPPermanentError}{} +Exception raised when an error code in the range 500--599 is +received. For backwards compatibility, the exception +\code{error_perm} is equivalent to this class. +\end{classdesc} -\begin{excdesc}{error_proto} +\begin{classdesc}{NNTPProtocolError}{} Exception raised when a reply is received from the server that does -not begin with a digit in the range 1--5. -\end{excdesc} +not begin with a digit in the range 1--5. For backwards +compatibility, the exception \code{error_proto} is equivalent to this +class. +\end{classdesc} + +\begin{classdesc}{NNTPDataError}{} +Exception raised when there is some error in the response data. For +backwards compatibility, the exception \code{error_data} is +equivalent to this class. +\end{classdesc} \subsection{NNTP Objects \label{nntp-objects}} |