[Python-checkins] CVS: python/dist/src/Doc/lib librfc822.tex,1.35,1.36

Fred L. Drake fdrake@users.sourceforge.net
Mon, 16 Jul 2001 22:18:00 -0700


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

Modified Files:
	librfc822.tex 
Log Message:

Fix a couple of minor markup nits.
Footnotes should be added *after* punctuation, not before.
(Yes, this should be merged with the descr branch.  Sorry, Tim!)


Index: librfc822.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/librfc822.tex,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -r1.35 -r1.36
*** librfc822.tex	2001/07/16 20:47:58	1.35
--- librfc822.tex	2001/07/17 05:17:58	1.36
***************
*** 7,15 ****
  This module defines a class, \class{Message}, which represents an
  ``email message'' as defined by the Internet standard
! \rfc{2822}\footnote{This module originally conformed to \rfc{822},
  hence the name.  Since then, \rfc{2822} has been released as an
  update to \rfc{822}.  This module should be considered
  \rfc{2822}-conformant, especially in cases where the
! syntax or semantics have changed since \rfc{822}.}.  Such messages
  consist of a collection of message headers, and a message body.  This
  module also defines a helper class
--- 7,15 ----
  This module defines a class, \class{Message}, which represents an
  ``email message'' as defined by the Internet standard
! \rfc{2822}.\footnote{This module originally conformed to \rfc{822},
  hence the name.  Since then, \rfc{2822} has been released as an
  update to \rfc{822}.  This module should be considered
  \rfc{2822}-conformant, especially in cases where the
! syntax or semantics have changed since \rfc{822}.}  Such messages
  consist of a collection of message headers, and a message body.  This
  module also defines a helper class
***************
*** 73,78 ****
  
  \begin{funcdesc}{parseaddr}{address}
! Parse address -- which should be the value of some address-containing
! field such as \code{To:} or \code{Cc:} -- into its constituent
  ``realname'' and ``email address'' parts.  Returns a tuple of that
  information, unless the parse fails, in which case a 2-tuple of
--- 73,78 ----
  
  \begin{funcdesc}{parseaddr}{address}
! Parse \var{address}, which should be the value of some address-containing
! field such as \code{To:} or \code{Cc:}, into its constituent
  ``realname'' and ``email address'' parts.  Returns a tuple of that
  information, unless the parse fails, in which case a 2-tuple of
***************
*** 258,262 ****
  support the \method{clear()}, \method{copy()}, \method{popitem()}, or
  \method{update()} methods of the mapping interface.  (Support for
! \method{.get()} and \method{.setdefault()} was only added in Python
  2.2.)
  
--- 258,262 ----
  support the \method{clear()}, \method{copy()}, \method{popitem()}, or
  \method{update()} methods of the mapping interface.  (Support for
! \method{get()} and \method{setdefault()} was only added in Python
  2.2.)