]> granicus.if.org Git - python/commit
Issue 7970: When email.Parser.Parser parses a MIME message of type
authorR. David Murray <rdmurray@bitdance.com>
Sun, 21 Feb 2010 04:23:00 +0000 (04:23 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Sun, 21 Feb 2010 04:23:00 +0000 (04:23 +0000)
commit51f1204590ebe00554ad30d6abf0e723e2ee1b65
tree5719d517d175225181a5cae5d976e00e8728e3ad
parent9e9af21d45e8f5c9debd799fd521a87b0d97c698
Issue 7970: When email.Parser.Parser parses a MIME message of type
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.
Lib/email/generator.py
Lib/email/test/data/msg_46.txt [new file with mode: 0644]
Lib/email/test/test_email.py
Misc/NEWS