summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS7
1 files changed, 7 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ad3cad9..7b1dd48 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,13 @@ Core and Builtins
Library
-------
+- Issue #19063: if a Charset's body_encoding was set to None, the email
+ package would generate a message claiming the Content-Transfer-Encoding
+ was 7bit, and produce garbage output for the content. This now works.
+ A couple of other set_payload mishandlings of non-ASCII are also fixed.
+ In addition, calling set_payload with a string argument without
+ specifying a charset now raises an error (this is a new error in 3.4).
+
- Issue #15475: Add __sizeof__ implementations for itertools objects.
- Issue #19880: Fix a reference leak in unittest.TestCase. Explicitly break