[Python-checkins] CVS: python/dist/src/Doc/lib libpoplib.tex,1.13,1.14

Fred L. Drake fdrake@users.sourceforge.net
Wed, 05 Dec 2001 14:37:23 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv1817/Doc/lib

Modified Files:
	libpoplib.tex 
Log Message:
Re-enabled debugging prints in poplib & documented the set_debuglevel()
method.
This closes SF patch #486079.


Index: libpoplib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libpoplib.tex,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** libpoplib.tex	2001/08/14 11:42:13	1.13
--- libpoplib.tex	2001/12/05 22:37:21	1.14
***************
*** 56,63 ****
  
  
  \begin{methoddesc}{getwelcome}{}
  Returns the greeting string sent by the POP3 server.
  \end{methoddesc}
- 
  
  \begin{methoddesc}{user}{username}
--- 56,71 ----
  
  
+ \begin{methoddesc}{set_debuglevel}{level}
+ Set the instance's debugging level.  This controls the amount of
+ debugging output printed.  The default, \code{0}, produces no
+ debugging output.  A value of \code{1} produces a moderate amount of
+ debugging output, generally a single line per request.  A value of
+ \code{2} or higher produces the maximum amount of debugging output,
+ logging each line sent and received on the control connection.
+ \end{methoddesc}
+ 
  \begin{methoddesc}{getwelcome}{}
  Returns the greeting string sent by the POP3 server.
  \end{methoddesc}
  
  \begin{methoddesc}{user}{username}