[Python-checkins] python/dist/src/Doc/lib emailgenerator.tex, 1.6, 1.7

bwarsaw at users.sourceforge.net bwarsaw at users.sourceforge.net
Tue Nov 18 21:22:38 EST 2003


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

Modified Files:
	emailgenerator.tex 
Log Message:
Generator's constructor: The documentation was incorrect regarding how
header wrapping gets done when maxheaderlen <> 0.  The header really
gets wrapped via the email.Header.Header class, which has a more
sophisticated algorithm than just splitting on semi-colons.


Index: emailgenerator.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/emailgenerator.tex,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** emailgenerator.tex	1 Oct 2002 15:29:09 -0000	1.6
--- emailgenerator.tex	19 Nov 2003 02:22:36 -0000	1.7
***************
*** 41,47 ****
  non-continued header.  When a header line is longer than
  \var{maxheaderlen} (in characters, with tabs expanded to 8 spaces),
! the header will be broken on semicolons and continued as per
! \rfc{2822}.  If no semicolon is found, then the header is left alone.
! Set to zero to disable wrapping headers.  Default is 78, as
  recommended (but not required) by \rfc{2822}.
  \end{classdesc}
--- 41,46 ----
  non-continued header.  When a header line is longer than
  \var{maxheaderlen} (in characters, with tabs expanded to 8 spaces),
! the header will be split as defined in the \module{email.Header}
! class.  Set to zero to disable header wrapping.  The default is 78, as
  recommended (but not required) by \rfc{2822}.
  \end{classdesc}





More information about the Python-checkins mailing list