summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-07-12 20:00:28 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-07-12 20:00:28 (GMT)
commit923512f327af6944bbdbc905d2372658a3977489 (patch)
treeb59a06066813e708621c90e3145753d3e6d5236a /Misc
parent65171b28e77f589a490335c8749a24151e1d8817 (diff)
downloadcpython-923512f327af6944bbdbc905d2372658a3977489.zip
cpython-923512f327af6944bbdbc905d2372658a3977489.tar.gz
cpython-923512f327af6944bbdbc905d2372658a3977489.tar.bz2
#18431: Decode encoded words in atoms in new email parser.
There is more to be done here in terms of accepting RFC invalid input that some mailers accept, but this covers the valid RFC places where encoded words can occur in structured headers.
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 c068ed8..65e60f4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -47,6 +47,9 @@ Core and Builtins
Library
-------
+- Issue #18431: The new email header parser now decodes RFC2047 encoded words
+ in structured headers.
+
- Issue #18044: The new email header parser was mis-parsing encoded words where
an encoded character immediately followed the '?' that follows the CTE
character, resulting in a decoding failure. They are now decoded correctly.