[Python-checkins] python/dist/src/Doc/lib emailmessage.tex,
1.11.12.1, 1.11.12.2
akuchling at users.sourceforge.net
akuchling at users.sourceforge.net
Fri Oct 31 14:52:45 EST 2003
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1:/tmp/cvs-serv20903
Modified Files:
Tag: release23-maint
emailmessage.tex
Log Message:
[Bug #817178] Fix incorrect arguments in example, noted by Terry Reedy
Index: emailmessage.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/emailmessage.tex,v
retrieving revision 1.11.12.1
retrieving revision 1.11.12.2
diff -C2 -d -r1.11.12.1 -r1.11.12.2
*** emailmessage.tex 19 Aug 2003 04:51:25 -0000 1.11.12.1
--- emailmessage.tex 31 Oct 2003 19:52:42 -0000 1.11.12.2
***************
*** 47,51 ****
from email.Generator import Generator
fp = StringIO()
! g = Generator(mangle_from_=False, maxheaderlen=60)
g.flatten(msg)
text = fp.getvalue()
--- 47,51 ----
from email.Generator import Generator
fp = StringIO()
! g = Generator(fp, mangle_from_=False, maxheaderlen=60)
g.flatten(msg)
text = fp.getvalue()
More information about the Python-checkins
mailing list