summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2011-01-05 01:39:32 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2011-01-05 01:39:32 (GMT)
commit477efb394412314d47fdfb3f7c287edb028809c0 (patch)
tree570907b128aae2ce7417d08061dbe0e5f5a67cf9 /Misc
parentca1e7ec3444c372335c96f83d1550b16b0783557 (diff)
downloadcpython-477efb394412314d47fdfb3f7c287edb028809c0.zip
cpython-477efb394412314d47fdfb3f7c287edb028809c0.tar.gz
cpython-477efb394412314d47fdfb3f7c287edb028809c0.tar.bz2
#10790: make append work when output codec is different from input codec
There's still a bug here (the encode call shouldn't use the 'errors' paramter), but I'll fix that later.
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 5dd389c..7ce7445 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -30,6 +30,9 @@ Core and Builtins
Library
-------
+- Issue #10790: email.header.Header.append's charset logic now works correctly
+ for charsets whose output codec is different from its input codec.
+
- Issue #10819: SocketIO.name property returns -1 when its closed, instead of
raising a ValueError, to fix repr().