[Python-checkins] python/dist/src/Doc/lib emailiter.tex,1.3,1.4

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Mon, 10 Mar 2003 20:40:16 -0800


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

Modified Files:
	emailiter.tex 
Log Message:
body_line_iterator() now takes a decode argument.


Index: emailiter.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/emailiter.tex,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** emailiter.tex	1 Oct 2002 01:05:52 -0000	1.3
--- emailiter.tex	11 Mar 2003 04:40:14 -0000	1.4
***************
*** 7,11 ****
  trees.
  
! \begin{funcdesc}{body_line_iterator}{msg}
  This iterates over all the payloads in all the subparts of \var{msg},
  returning the string payloads line-by-line.  It skips over all the
--- 7,11 ----
  trees.
  
! \begin{funcdesc}{body_line_iterator}{msg\optional{, decode}}
  This iterates over all the payloads in all the subparts of \var{msg},
  returning the string payloads line-by-line.  It skips over all the
***************
*** 14,17 ****
--- 14,19 ----
  flat text representation of the message from a file using
  \method{readline()}, skipping over all the intervening headers.
+ 
+ Optional \var{decode} is passed through to \method{Message.get_payload()}.
  \end{funcdesc}