summaryrefslogtreecommitdiffstats
path: root/Lib/email/generator.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue 7970: When email.Parser.Parser parses a MIME message of typeR. David Murray2010-02-211-2/+10
| | | | | | | | | | message/rfc822 it turns it into an object whose body consists of a list containing a single Message object. HeaderParser, on the other hand, just copies the body as a string. Generator.flatten has a special handler for the message mime type that expected the body to be the one item list. This fails if the message was parsed by HeaderParser. So we now check to see if the body is a string first, and if so just we just emit it.
* Issue #1670765: Prevent email.generator.Generator from re-wrappingR. David Murray2010-01-161-0/+11
| | | | | | headers in multipart/signed MIME parts, which fixes one of the sources of invalid modifications to such parts by Generator. Patch and tests by Martin von Gagern.
* More yearly updates.Georg Brandl2010-01-011-1/+1
|
* A fix for issue 1974, inspired by the patch from Andi Albrecht (aalbrecht),Barry Warsaw2009-03-301-5/+7
| | | | | | though with some changes by me. This patch should not be back ported or forward ported. It's a bit too risky for 2.6 and 3.x does things fairly differently.
* Remove Barry's love of deprecated syntax to silence warnings in the emailBrett Cannon2008-08-031-1/+1
| | | | package, when run under -3, about using <>.
* Merge email package 4.0 from the sandbox, including documentation, test cases,Barry Warsaw2006-03-181-0/+348
and NEWS updates.