summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-03-15 16:20:02 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-03-15 16:20:02 (GMT)
commit56a9d7e3daff45f5fef206ea42398b4a0505fb47 (patch)
tree42f16713454d229e7b90122bb350eae90ca4550b /Misc
parentde3909da6b8d09b7bcb142994ebd6daba61a23d3 (diff)
downloadcpython-56a9d7e3daff45f5fef206ea42398b4a0505fb47.zip
cpython-56a9d7e3daff45f5fef206ea42398b4a0505fb47.tar.gz
cpython-56a9d7e3daff45f5fef206ea42398b4a0505fb47.tar.bz2
#11554: reactivate test_email_codecs, and make it pass.
The fix is to charset.py, which was not doing the encoding to the correct output character set when doing a body_encode for either the shift-jis or euc-jp charsets. There's also a fix for handling a bytes input in encoders.py. Patch by Michael Henry, comment changes by me.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS5
2 files changed, 6 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index a1197ad..8938267 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -371,6 +371,7 @@ Kevan Heydon
Jason Hildebrand
Richie Hindle
Konrad Hinsen
+Michael Henry
David Hobley
Tim Hochberg
Joerg-Cyril Hoehle
diff --git a/Misc/NEWS b/Misc/NEWS
index a201895..adc719b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -34,6 +34,9 @@ Core and Builtins
Library
-------
+- Issue #11554: Fixed support for Japanese codecs; previously the body output
+ encoding was not done if euc-jp or shift-jis was specified as the charset.
+
- Issue #11500: Fixed a bug in the os x proxy bypass code for fully qualified
IP addresses in the proxy exception list.
@@ -99,6 +102,8 @@ Tools/Demos
Tests
-----
+- Issue #11554: Reactivated test_email_codecs.
+
- Issue #11490: test_subprocess:test_leaking_fds_on_error no longer gives a
false positive if the last directory in the path is inaccessible.