summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-02-21 04:39:40 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-02-21 04:39:40 (GMT)
commit57c45ac5e508cfa62efab9c372d1c08544f2f5b4 (patch)
tree2ff002979ce53f658dbd241abf3a8cc58afe9679 /Misc
parent734f05925ef57e34e13efd501a47556a98ea3085 (diff)
downloadcpython-57c45ac5e508cfa62efab9c372d1c08544f2f5b4.zip
cpython-57c45ac5e508cfa62efab9c372d1c08544f2f5b4.tar.gz
cpython-57c45ac5e508cfa62efab9c372d1c08544f2f5b4.tar.bz2
Merged revisions 78274 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78274 | r.david.murray | 2010-02-20 23:23:00 -0500 (Sat, 20 Feb 2010) | 9 lines 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. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7b9c8e5..67a9300 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -242,6 +242,9 @@ C-API
Library
-------
+- Issue #7970: email.Generator.flatten now correctly flattens message/rfc822
+ messages parsed by email.Parser.HeaderParser.
+
- Issue #7361: Importlib was not properly checking the number of bytes in
bytecode file when it was less then 8 bytes.