[Python-checkins] CVS: python/dist/src/Doc/lib email.tex,1.6,1.7 emailgenerator.tex,1.2,1.3 emailmessage.tex,1.3,1.4 emailutil.tex,1.3,1.4

A.M. Kuchling akuchling@users.sourceforge.net
Sun, 04 Nov 2001 17:55:06 -0800


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

Modified Files:
	email.tex emailgenerator.tex emailmessage.tex emailutil.tex 
Log Message:
Minor grammar and typo fixes


Index: email.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/email.tex,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** email.tex	2001/10/09 19:37:51	1.6
--- email.tex	2001/11/05 01:55:03	1.7
***************
*** 27,31 ****
  completely re-arrange the contents, etc.  There is a separate parser
  and a separate generator which handles the transformation from flat
! text to the object module, and then back to flat text again.  There
  are also handy subclasses for some common MIME object types, and a few
  miscellaneous utilities that help with such common tasks as extracting
--- 27,31 ----
  completely re-arrange the contents, etc.  There is a separate parser
  and a separate generator which handles the transformation from flat
! text to the object model, and then back to flat text again.  There
  are also handy subclasses for some common MIME object types, and a few
  miscellaneous utilities that help with such common tasks as extracting
***************
*** 49,53 ****
  some auxiliary utilities, and a few examples.  For users of the older
  \module{mimelib} package, from which the \module{email} package is
! descendent, a section on differences and porting is provided.
  
  \subsection{Representing an email message}
--- 49,53 ----
  some auxiliary utilities, and a few examples.  For users of the older
  \module{mimelib} package, from which the \module{email} package is
! descended, a section on differences and porting is provided.
  
  \subsection{Representing an email message}

Index: emailgenerator.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/emailgenerator.tex,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** emailgenerator.tex	2001/09/26 22:21:52	1.2
--- emailgenerator.tex	2001/11/05 01:55:03	1.3
***************
*** 16,20 ****
  transformation from flat text, to an object tree via the
  \class{Parser} class,
! and back to flat text, be idempotent (the input is identical to the
  output).
  
--- 16,20 ----
  transformation from flat text, to an object tree via the
  \class{Parser} class,
! and back to flat text, is idempotent (the input is identical to the
  output).
  
***************
*** 28,32 ****
  Python 2.0 extended print statement.
  
! Optional \var{mangle_from_} is a flag that, when true, puts a ``>''
  character in front of any line in the body that starts exactly as
  \samp{From } (i.e. \code{From} followed by a space at the front of the
--- 28,32 ----
  Python 2.0 extended print statement.
  
! Optional \var{mangle_from_} is a flag that, when true, puts a \samp{>}
  character in front of any line in the body that starts exactly as
  \samp{From } (i.e. \code{From} followed by a space at the front of the

Index: emailmessage.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/emailmessage.tex,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** emailmessage.tex	2001/10/19 04:34:42	1.3
--- emailmessage.tex	2001/11/05 01:55:03	1.4
***************
*** 133,137 ****
  \begin{methoddesc}[Message]{__contains__}{name}
  Return true if the message object has a field named \var{name}.
! Match is done case-insensitively and \var{name} should not include the
  trailing colon.  Used for the \code{in} operator,
  e.g.:
--- 133,137 ----
  \begin{methoddesc}[Message]{__contains__}{name}
  Return true if the message object has a field named \var{name}.
! Matching is done case-insensitively and \var{name} should not include the
  trailing colon.  Used for the \code{in} operator,
  e.g.:

Index: emailutil.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/emailutil.tex,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** emailutil.tex	2001/10/22 20:53:45	1.3
--- emailutil.tex	2001/11/05 01:55:03	1.4
***************
*** 102,106 ****
  first 8 elements of \var{tuple} as a local time and then compensates
  for the timezone difference.  This may yield a slight error around
! changes in daylight savings time, though not worth worring about for
  common use.
  \end{funcdesc}
--- 102,106 ----
  first 8 elements of \var{tuple} as a local time and then compensates
  for the timezone difference.  This may yield a slight error around
! changes in daylight savings time, though not worth worrying about for
  common use.
  \end{funcdesc}