summaryrefslogtreecommitdiffstats
path: root/Misc
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
parent3137d25b43ad52905a22158112bff4b0fa488b3b (diff)
parent6d94bd470e3f4aa1dc7295b034553509ace2c654 (diff)
downloadcpython-78099bb153c2b8399f80cb32798dda7215945157.zip
cpython-78099bb153c2b8399f80cb32798dda7215945157.tar.gz
cpython-78099bb153c2b8399f80cb32798dda7215945157.tar.bz2
Merge #9298 fix.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 1e2b83d..0cbc670 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -225,6 +225,7 @@ Jaromir Dolecek
Ismail Donmez
Marcos Donolo
Dima Dorfman
+Yves Dorfsman
Cesar Douady
Dean Draayer
Fred L. Drake, Jr.
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.