[Python-checkins] python/dist/src/Doc/lib emailcharsets.tex,1.1.2.1,1.1.2.2 emailmessage.tex,1.4.8.1,1.4.8.2

bwarsaw@users.sourceforge.net bwarsaw@users.sourceforge.net
Thu, 10 Oct 2002 12:10:48 -0700


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

Modified Files:
      Tag: release22-maint
	emailcharsets.tex emailmessage.tex 
Log Message:
Backport email 2.4.2 changes from Python 2.3.


Index: emailcharsets.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/emailcharsets.tex,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** emailcharsets.tex	4 Oct 2002 17:24:23 -0000	1.1.2.1
--- emailcharsets.tex	10 Oct 2002 19:10:45 -0000	1.1.2.2
***************
*** 24,31 ****
  converted outright, and are not allowed in email.
  
! Optional \var{input_charset} is as described below.  After being alias
! normalized it is also used as a lookup into the registry of character
! sets to find out the header encoding, body encoding, and output
! conversion codec to be used for the character set.  For example, if
  \var{input_charset} is \code{iso-8859-1}, then headers and bodies will
  be encoded using quoted-printable and no output conversion codec is
--- 24,32 ----
  converted outright, and are not allowed in email.
  
! Optional \var{input_charset} is as described below; it is always
! coerced to lower case.  After being alias normalized it is also used
! as a lookup into the registry of character sets to find out the header
! encoding, body encoding, and output conversion codec to be used for
! the character set.  For example, if
  \var{input_charset} is \code{iso-8859-1}, then headers and bodies will
  be encoded using quoted-printable and no output conversion codec is

Index: emailmessage.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/emailmessage.tex,v
retrieving revision 1.4.8.1
retrieving revision 1.4.8.2
diff -C2 -d -r1.4.8.1 -r1.4.8.2
*** emailmessage.tex	4 Oct 2002 17:24:23 -0000	1.4.8.1
--- emailmessage.tex	10 Oct 2002 19:10:45 -0000	1.4.8.2
***************
*** 444,449 ****
  \begin{methoddesc}[Message]{get_content_charset}{\optional{failobj}}
  Return the \code{charset} parameter of the \mailheader{Content-Type}
! header.  If there is no \mailheader{Content-Type} header, or if that
! header has no \code{charset} parameter, \var{failobj} is returned.
  
  Note that this method differs from \method{get_charset()} which
--- 444,450 ----
  \begin{methoddesc}[Message]{get_content_charset}{\optional{failobj}}
  Return the \code{charset} parameter of the \mailheader{Content-Type}
! header, coerced to lower case.  If there is no
! \mailheader{Content-Type} header, or if that header has no
! \code{charset} parameter, \var{failobj} is returned.
  
  Note that this method differs from \method{get_charset()} which