[Python-checkins] python/dist/src/Doc/lib libimaplib.tex,1.25,1.26

pierslauder at users.sourceforge.net pierslauder at users.sourceforge.net
Thu May 20 08:13:00 EDT 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27664/dist/src/Doc/lib

Modified Files:
	libimaplib.tex 
Log Message:
Added description for authenticate and namespace

Index: libimaplib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libimaplib.tex,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** libimaplib.tex	10 Nov 2003 06:44:43 -0000	1.25
--- libimaplib.tex	20 May 2004 12:12:58 -0000	1.26
***************
*** 139,148 ****
  
  \begin{methoddesc}{append}{mailbox, flags, date_time, message}
!   Append message to named mailbox. 
  \end{methoddesc}
  
! \begin{methoddesc}{authenticate}{func}
!   Authenticate command --- requires response processing. This is
!   currently unimplemented, and raises an exception. 
  \end{methoddesc}
  
--- 139,162 ----
  
  \begin{methoddesc}{append}{mailbox, flags, date_time, message}
!   Append \var{message} to named mailbox. 
  \end{methoddesc}
  
! \begin{methoddesc}{authenticate}{mechanism, authobject}
!   Authenticate command --- requires response processing.
! 
!   \var{mechanism} specifies which authentication mechanism is to
!   be used - it should appear in the instance variable \code{capabilities} in the
!   form \code{AUTH=mechanism}.
! 
!   \var{authobject} must be a callable object:
! 
! \begin{verbatim}
! data = authobject(response)
! \end{verbatim}
! 
!   It will be called to process server continuation responses.
!   It should return \code{data} that will be encoded and sent to server.
!   It should return \code{None} if the client abort response \samp{*} should
!   be sent instead.
  \end{methoddesc}
  
***************
*** 229,232 ****
--- 243,251 ----
  \end{methoddesc}
  
+ \begin{methoddesc}{namespace}{}
+   Returns IMAP namespaces as defined in RFC2342.
+ \versionadded{2.3}
+ \end{methoddesc}
+ 
  \begin{methoddesc}{noop}{}
    Send \samp{NOOP} to server.




More information about the Python-checkins mailing list