diff options
author | R. David Murray <rdmurray@bitdance.com> | 2011-01-05 01:47:38 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2011-01-05 01:47:38 (GMT) |
commit | f9844c8292c34fe4361d441164d83642fc76ce68 (patch) | |
tree | fafccdd877c3db36d58e130583452a71f444dd74 /Misc | |
parent | 1d879f68525858fcfa7aacdd7cd16721a89c62c4 (diff) | |
download | cpython-f9844c8292c34fe4361d441164d83642fc76ce68.zip cpython-f9844c8292c34fe4361d441164d83642fc76ce68.tar.gz cpython-f9844c8292c34fe4361d441164d83642fc76ce68.tar.bz2 |
Merged revisions 87750 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r87750 | r.david.murray | 2011-01-04 20:39:32 -0500 (Tue, 04 Jan 2011) | 5 lines
#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
@@ -27,6 +27,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 #6643: Reinitialize locks held within the threading module after fork to avoid a potential rare deadlock or crash on some platforms. |