diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-11-05 01:55:03 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-11-05 01:55:03 (GMT) |
commit | 43dc1fc92611d77728277527138248112c511b0f (patch) | |
tree | e20195214c1f8826e45e134a5ba7aae5c1d939ed /Doc/lib/emailgenerator.tex | |
parent | 6f97e493e1626d101c53472c239e28e3fae3b42a (diff) | |
download | cpython-43dc1fc92611d77728277527138248112c511b0f.zip cpython-43dc1fc92611d77728277527138248112c511b0f.tar.gz cpython-43dc1fc92611d77728277527138248112c511b0f.tar.bz2 |
Minor grammar and typo fixes
Diffstat (limited to 'Doc/lib/emailgenerator.tex')
-rw-r--r-- | Doc/lib/emailgenerator.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/emailgenerator.tex b/Doc/lib/emailgenerator.tex index 6ded8d1..63ceb73 100644 --- a/Doc/lib/emailgenerator.tex +++ b/Doc/lib/emailgenerator.tex @@ -15,7 +15,7 @@ generate most email in a standards-compliant way, should handle MIME and non-MIME email messages just fine, and is designed so that the transformation from flat text, to an object tree via the \class{Parser} class, -and back to flat text, be idempotent (the input is identical to the +and back to flat text, is idempotent (the input is identical to the output). Here are the public methods of the \class{Generator} class: @@ -27,7 +27,7 @@ object called \var{outfp} for an argument. \var{outfp} must support the \method{write()} method and be usable as the output file in a Python 2.0 extended print statement. -Optional \var{mangle_from_} is a flag that, when true, puts a ``>'' +Optional \var{mangle_from_} is a flag that, when true, puts a \samp{>} character in front of any line in the body that starts exactly as \samp{From } (i.e. \code{From} followed by a space at the front of the line). This is the only guaranteed portable way to avoid having such |