summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-02-08 18:13:01 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-02-08 18:13:01 (GMT)
commit01e46ee7e28f5f14ede2b7078cfd277199751dc3 (patch)
treeab1808c55105351d4bf0a8e794e9d7eb70139d45 /Misc
parentff9616bbf7ecbd55a7206dae28f06ef90f270566 (diff)
parent0400d33928e6b463db164836da670700f03edc5d (diff)
downloadcpython-01e46ee7e28f5f14ede2b7078cfd277199751dc3.zip
cpython-01e46ee7e28f5f14ede2b7078cfd277199751dc3.tar.gz
cpython-01e46ee7e28f5f14ede2b7078cfd277199751dc3.tar.bz2
Merge: #16983: Apply postel's law to encoded words inside quoted strings.
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 4df5a41..be6fee9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Issue #16983: the new email header parsing code will now decode encoded words
+ that are (incorrectly) surrounded by quotes, and register a defect.
+
- Issue #19772: email.generator no longer mutates the message object when
doing a down-transform from 8bit to 7bit CTEs.