summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-01-13 18:30:13 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-01-13 18:30:13 (GMT)
commit44fcaae90d485d8b853fe4d4fd5225d71ed9565c (patch)
treefb62659c71138e3b0dc0c17d04acdbc8bed0a22f /Misc
parentf22fe0f5079779663ba3b0fbc261992c5ad3a08d (diff)
parent2313e15578aa864c7b995de996e4787169f7ca8d (diff)
downloadcpython-44fcaae90d485d8b853fe4d4fd5225d71ed9565c.zip
cpython-44fcaae90d485d8b853fe4d4fd5225d71ed9565c.tar.gz
cpython-44fcaae90d485d8b853fe4d4fd5225d71ed9565c.tar.bz2
Merge #20206, #5803: more efficient algorithm that doesn't truncate output.
(No idea why test_tarfile is listed as changed...it isn't.)
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 715bd78..d6232d3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,10 @@ Core and Builtins
Library
-------
+- Issues #20206 and #5803: Fix edge case in email.quoprimime.encode where it
+ truncated lines ending in a character needing encoding but no newline by
+ using a more efficient algorithm that doesn't have the bug.
+
- Issue #19082: Working xmlrpc.server and xmlrpc.client examples. Both in
modules and in documentation. Initial patch contributed by Vajrasky Kok.