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

Eric S. Raymond esr@users.sourceforge.net
Sat, 27 Jan 2001 02:56:16 -0800


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

Modified Files:
	librfc822.tex 
Log Message:
Emphasis that instantiating this class doesn't consume the message body.
Fix some unclear language in the description of the addrlist member.



Index: librfc822.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/librfc822.tex,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** librfc822.tex	2000/09/15 18:20:20	1.29
--- librfc822.tex	2001/01/27 10:56:14	1.30
***************
*** 21,25 ****
  qualify.  Instantiation reads headers from the input object up to a
  delimiter line (normally a blank line) and stores them in the
! instance.
  
  This class can work with any input object that supports a
--- 21,25 ----
  qualify.  Instantiation reads headers from the input object up to a
  delimiter line (normally a blank line) and stores them in the
! instance.  The message body, following the headers, is not consumed.
  
  This class can work with any input object that supports a
***************
*** 264,268 ****
  \begin{memberdesc}{addresslist}
  A list of tuple string pairs, one per address.  In each member, the
! first is the canonicalized name part of the address, the second is the
! route-address (@-separated host-domain pair).
  \end{memberdesc}
--- 264,268 ----
  \begin{memberdesc}{addresslist}
  A list of tuple string pairs, one per address.  In each member, the
! first is the canonicalized name part, the second is the
! actual route-address (@-separated username-host.domain pair).
  \end{memberdesc}