diff options
author | Barry Warsaw <barry@python.org> | 2001-10-04 17:05:11 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2001-10-04 17:05:11 (GMT) |
commit | e968ead1dd80fd7fb97cd273626b530996ea0c7b (patch) | |
tree | 986c2f9398dfb612c92f1b20c14702c9aa7390ad /Lib/email/Generator.py | |
parent | a68ca35a8bc56d572ac6ab343ce6359bbd3ab5cc (diff) | |
download | cpython-e968ead1dd80fd7fb97cd273626b530996ea0c7b.zip cpython-e968ead1dd80fd7fb97cd273626b530996ea0c7b.tar.gz cpython-e968ead1dd80fd7fb97cd273626b530996ea0c7b.tar.bz2 |
Give me back my page breaks.
Diffstat (limited to 'Lib/email/Generator.py')
-rw-r--r-- | Lib/email/Generator.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/email/Generator.py b/Lib/email/Generator.py index 476e9e7..c31dc80 100644 --- a/Lib/email/Generator.py +++ b/Lib/email/Generator.py @@ -25,7 +25,7 @@ SPACE8 = ' ' * 8 fcre = re.compile(r'^From ', re.MULTILINE) - + class Generator: """Generates output from a Message object tree. @@ -278,7 +278,7 @@ class Generator: self._fp.write(s.getvalue()) - + class DecodedGenerator(Generator): """Generator a text representation of a message. @@ -334,7 +334,7 @@ class DecodedGenerator(Generator): } - + # Helper def _make_boundary(self, text=None): # Craft a random boundary. If text is given, ensure that the chosen |