[Python-checkins] CVS: python/dist/src/Doc/lib libmimetools.tex,1.15,1.15.4.1

Fred L. Drake fdrake@weyr.cnri.reston.va.us
Tue, 14 Mar 2000 13:00:22 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Doc/lib
In directory weyr:/home/fdrake/projects/python/Doc-152p2/lib

Modified Files:
      Tag: release152p1-patches
	libmimetools.tex 
Log Message:

Added a "See also" reference pointing to the rfc822 module.


Index: libmimetools.tex
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Doc/lib/libmimetools.tex,v
retrieving revision 1.15
retrieving revision 1.15.4.1
diff -C2 -r1.15 -r1.15.4.1
*** libmimetools.tex	1999/02/19 22:59:56	1.15
--- libmimetools.tex	2000/03/14 18:00:19	1.15.4.1
***************
*** 3,7 ****
  
  \declaremodule{standard}{mimetools}
! \modulesynopsis{Tools for parsing MIME style message bodies.}
  
  
--- 3,7 ----
  
  \declaremodule{standard}{mimetools}
! \modulesynopsis{Tools for parsing MIME-style message bodies.}
  
  
***************
*** 39,43 ****
  
  \begin{funcdesc}{copyliteral}{input, output}
! Read lines until \EOF{} from open file \var{input} and write them to
  open file \var{output}.
  \end{funcdesc}
--- 39,43 ----
  
  \begin{funcdesc}{copyliteral}{input, output}
! Read lines from open file \var{input} until \EOF{} and write them to
  open file \var{output}.
  \end{funcdesc}
***************
*** 47,50 ****
--- 47,56 ----
  open file \var{output}.  The block size is currently fixed at 8192.
  \end{funcdesc}
+ 
+ 
+ \begin{seealso}
+   \seemodule{rfc822}{Provides the base class for for
+                      \class{mimetools.Message}.}
+ \end{seealso}