summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2017-12-03 23:51:41 (GMT)
committerGitHub <noreply@github.com>2017-12-03 23:51:41 (GMT)
commit85d5c18c9d83a1d54eecc4c2ad4dce63194107c6 (patch)
tree39edcca989e60b95a64e317440057ee45aea8fc0 /Misc
parent29ba688034fc4eef0693b86002cf7bee55d692af (diff)
downloadcpython-85d5c18c9d83a1d54eecc4c2ad4dce63194107c6.zip
cpython-85d5c18c9d83a1d54eecc4c2ad4dce63194107c6.tar.gz
cpython-85d5c18c9d83a1d54eecc4c2ad4dce63194107c6.tar.bz2
bpo-27240 Rewrite the email header folding algorithm. (#3488)
The original algorithm tried to delegate the folding to the tokens so that those tokens whose folding rules differed could specify the differences. However, this resulted in a lot of duplicated code because most of the rules were the same. The new algorithm moves all folding logic into a set of functions external to the token classes, but puts the information about which tokens can be folded in which ways on the tokens...with the exception of mime-parameters, which are a special case (which was not even implemented in the old folder). This algorithm can still probably be improved and hopefully simplified somewhat. Note that some of the test expectations are changed. I believe the changes are toward more desirable and consistent behavior: in general when (re) folding a line the canonical version of the tokens is generated, rather than preserving errors or extra whitespace.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-12-02-16-06-00.bpo-27240.Kji34M.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-12-02-16-06-00.bpo-27240.Kji34M.rst b/Misc/NEWS.d/next/Library/2017-12-02-16-06-00.bpo-27240.Kji34M.rst
new file mode 100644
index 0000000..c933ee7
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-12-02-16-06-00.bpo-27240.Kji34M.rst
@@ -0,0 +1,3 @@
+The header folding algorithm for the new email policies has been rewritten,
+which also fixes bpo-30788, bpo-31831, and bpo-32182. In particular, RFC2231
+folding is now done correctly.