summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-03-16 20:13:07 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-03-16 20:13:07 (GMT)
commit78099bb153c2b8399f80cb32798dda7215945157 (patch)
treefe4693ce1f16c2e5a81de70ea1a42b401ef3c339 /Misc/NEWS
parent3137d25b43ad52905a22158112bff4b0fa488b3b (diff)
parent6d94bd470e3f4aa1dc7295b034553509ace2c654 (diff)
downloadcpython-78099bb153c2b8399f80cb32798dda7215945157.zip
cpython-78099bb153c2b8399f80cb32798dda7215945157.tar.gz
cpython-78099bb153c2b8399f80cb32798dda7215945157.tar.bz2
Merge #9298 fix.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 419b0d5..9af1442 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,10 @@ Core and Builtins
Library
-------
+- Issue #9298: base64 bodies weren't being folded to line lengths less than 78,
+ which was a regression relative to Python2. Unlike Python2, the last line
+ of the folded body now ends with a carriage return.
+
- Issue #11560: shutil.unpack_archive now correctly handles the format
parameter. Patch by Evan Dandrea.