diff options
author | R. David Murray <rdmurray@bitdance.com> | 2011-01-05 01:39:32 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2011-01-05 01:39:32 (GMT) |
commit | 477efb394412314d47fdfb3f7c287edb028809c0 (patch) | |
tree | 570907b128aae2ce7417d08061dbe0e5f5a67cf9 /Misc | |
parent | ca1e7ec3444c372335c96f83d1550b16b0783557 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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(). |