diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-04-12 14:26:06 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-04-12 14:26:06 (GMT) |
commit | 27ef93797c4e0bdb46c9c2873264f89840028a5e (patch) | |
tree | 0204617bd1ccd907d7f6ccd95061aef3de6229b2 /Misc | |
parent | d10b65eb687575966f28d1f5f82a3642568aa82a (diff) | |
download | cpython-27ef93797c4e0bdb46c9c2873264f89840028a5e.zip cpython-27ef93797c4e0bdb46c9c2873264f89840028a5e.tar.gz cpython-27ef93797c4e0bdb46c9c2873264f89840028a5e.tar.bz2 |
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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -15,6 +15,10 @@ Core and Builtins 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 #8330: Fix expected output in test_gdb. - Issue #8374: Update the internal alias table in the :mod:`locale` module |