summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-07-11 19:58:07 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-07-11 19:58:07 (GMT)
commit63194a774e47ab5c7a10a693ef53188cf24dce16 (patch)
treeb2a6fa5fb2c9057a908488bb150ba12e43ab5701 /Misc
parentf9e6672ae8044f9dbcbafe98a6b63ab30189770e (diff)
parent65171b28e77f589a490335c8749a24151e1d8817 (diff)
downloadcpython-63194a774e47ab5c7a10a693ef53188cf24dce16.zip
cpython-63194a774e47ab5c7a10a693ef53188cf24dce16.tar.gz
cpython-63194a774e47ab5c7a10a693ef53188cf24dce16.tar.bz2
Merge: #18044: Fix parsing of encoded words of the form =?utf8?q?=XX...?=
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4cfe4f8..751433f 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -151,6 +151,10 @@ Core and Builtins
Library
-------
+- 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.
+
- Issue #18101: Tcl.split() now process strings nested in a tuple as it
do with byte strings.