[Python-checkins] CVS: python/dist/src/Doc/lib libmailbox.tex,1.17,1.18

Barry Warsaw bwarsaw@users.sourceforge.net
Wed, 11 Apr 2001 13:12:35 -0700


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

Modified Files:
	libmailbox.tex 
Log Message:
Added some additional documentation describing how BabylMailbox
actually works (it returns a message containing the visible headers,
not the original headers).  Doc change approved by Fred; closes SF bug
#412230.


Index: libmailbox.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libmailbox.tex,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** libmailbox.tex	2001/02/02 03:51:05	1.17
--- libmailbox.tex	2001/04/11 20:12:33	1.18
***************
*** 70,77 ****
  
  \begin{classdesc}{BabylMailbox}{fp\optional{, factory}}
! Access a Babyl mailbox, which is similar to an MMDF mailbox.  Mail
! messages start with a line containing only \code{'*** EOOH ***'} and
! end with a line containing only \code{'\e{}037\e{}014'}.
! \var{factory} is as with the \class{UnixMailbox} class.
  \end{classdesc}
  
--- 70,85 ----
  
  \begin{classdesc}{BabylMailbox}{fp\optional{, factory}}
! Access a Babyl mailbox, which is similar to an MMDF mailbox.  In
! Babyl format, each message has two sets of headers, the
! \emph{original} headers and the \emph{visible} headers.  The original
! headers appear before a a line containing only \code{'*** EOOH ***'}
! (End-Of-Original-Headers) and the visible headers appear after the
! \code{EOOH} line.  Babyl-compliant mail readers will show you only the
! visible headers, and \class{BabylMailbox} objects will return messages
! containing only the visible headers.  You'll have to do your own
! parsing of the mailbox file to get at the original headers.  Mail
! messages start with the EOOH line and end with a line containing only
! \code{'\e{}037\e{}014'}.  \var{factory} is as with the
! \class{UnixMailbox} class.
  \end{classdesc}