summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-04-12 14:48:58 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-04-12 14:48:58 (GMT)
commitef3d6bd25f7bb235c80e1a2c128903661c56ddcf (patch)
treeb2ff1393e66576e4b2b9e58f684caa9014866e05 /Misc
parent46cd93a42f917bcd0a1cc7ca62eec55e56331d6f (diff)
downloadcpython-ef3d6bd25f7bb235c80e1a2c128903661c56ddcf.zip
cpython-ef3d6bd25f7bb235c80e1a2c128903661c56ddcf.tar.gz
cpython-ef3d6bd25f7bb235c80e1a2c128903661c56ddcf.tar.bz2
Merged revisions 79994 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r79994 | r.david.murray | 2010-04-12 10:26:06 -0400 (Mon, 12 Apr 2010) | 9 lines Issue #7472: ISO-2022 charsets now consistently use 7bit CTE. Fixed a typo in the email.encoders module so that messages output using an ISO-2022 character set will use a content-transfer-encoding of 7bit consistently. Previously if the input data had any eight bit characters the output data would get marked as 8bit even though it was actually 7bit. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0ca4bd3..e34d63e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -312,6 +312,10 @@ C-API
Library
-------
+- Issue #7472: Fixed typo in email.encoders module; messages using ISO-2022
+ character sets will now consistently use a Content-Transfer-Encoding of
+ 7bit rather than sometimes being marked as 8bit.
+
- Issue #8375: test_distutils now checks if the temporary directory are still
present before it cleans them.