__init__(self,
f,
compact=0,
use_quoted_printable=0,
fold_incorrectly=0,
do_not_fold=0)
(Constructor)
Initialise the writer with a stream 'f', configuring the writer with the
following optional parameters:
* compact - use a compact representation (popular with
many applications, but not enabled by
default)
* use_quoted_printable - use the quoted-printable representation for
text (not enabled by default)
* fold_incorrectly - produce incorrectly folded text to satisfy
non-compliant applications (not enabled by
default)
* do_not_fold - do not fold text but place long text on a
single line (not enabled by default)
-
|