diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-03-14 18:05:03 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-03-14 18:05:03 (GMT) |
commit | 9fd170e2d053bd86592b8728bdd00cf2d2a06d0b (patch) | |
tree | 3bbd815324702f30da3971990a5a6c7641ab52e3 /Misc | |
parent | 525fd5447d0fdd6209a57090af65cbb811ad5999 (diff) | |
download | cpython-9fd170e2d053bd86592b8728bdd00cf2d2a06d0b.zip cpython-9fd170e2d053bd86592b8728bdd00cf2d2a06d0b.tar.gz cpython-9fd170e2d053bd86592b8728bdd00cf2d2a06d0b.tar.bz2 |
#14062: fix BytesParser handling of linesep for Header objects
This also affected smtplib.SMTP.send_message, which calls BytesParser.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -22,6 +22,9 @@ Core and Builtins Library ------- +- Issue #14062: Header objects now correctly respect the 'linesep' setting + when processed by BytesParser (which smtplib.SMTP.send_message uses). + - Issue #14291: Email now defaults to utf-8 for non-ASCII unicode headers instead of raising an error. This fixes a regression relative to 2.7. |