summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-09-08 16:40:30 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-09-08 16:40:30 (GMT)
commit2b2a9be9135be0135649a2a869856dbe4cc543f1 (patch)
treea6bd044be68769fe5f5ec96cea3554f8da89bfc9 /Misc
parent82733fac8dca465a1f0eb8e82b3b3f53cc6da145 (diff)
downloadcpython-2b2a9be9135be0135649a2a869856dbe4cc543f1.zip
cpython-2b2a9be9135be0135649a2a869856dbe4cc543f1.tar.gz
cpython-2b2a9be9135be0135649a2a869856dbe4cc543f1.tar.bz2
Issue #27445: Don't pass str(_charset) to MIMEText.set_payload()
Patch by Claude Paroz.
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 1581838..a18ceb6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -60,6 +60,9 @@ Core and Builtins
Library
-------
+- Issue #27445: Don't pass str(_charset) to MIMEText.set_payload().
+ Patch by Claude Paroz.
+
- lib2to3.pgen3.driver.load_grammar() now creates a stable cache file
between runs given the same Grammar.txt input regardless of the hash
randomization setting.