diff options
author | Joel Hillacre <joel@403forbidden.ca> | 2017-07-06 21:29:09 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2017-07-06 21:29:09 (GMT) |
commit | 3bbdf990a2c1b0b303b950058e3177a1bd5f697a (patch) | |
tree | b2ebc2b052ae6ab7547d4101590ee7545c0d4c70 /Misc/NEWS.d/next | |
parent | 710cc7667c27955272725729775cb39c40cca113 (diff) | |
download | cpython-3bbdf990a2c1b0b303b950058e3177a1bd5f697a.zip cpython-3bbdf990a2c1b0b303b950058e3177a1bd5f697a.tar.gz cpython-3bbdf990a2c1b0b303b950058e3177a1bd5f697a.tar.bz2 |
bpo-30532: Fix whitespace folding in certain cases (#2592)
Leading whitespace was incorrectly dropped during folding of certain lines in the _header_value_parser's folding algorithm. This makes the whitespace handling code consistent.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Library/2017-06-26-11-01-59.bpo-30532.qTeL1o.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-06-26-11-01-59.bpo-30532.qTeL1o.rst b/Misc/NEWS.d/next/Library/2017-06-26-11-01-59.bpo-30532.qTeL1o.rst new file mode 100644 index 0000000..adce85f --- /dev/null +++ b/Misc/NEWS.d/next/Library/2017-06-26-11-01-59.bpo-30532.qTeL1o.rst @@ -0,0 +1 @@ +Fix email header value parser dropping folding white space in certain cases. |