summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-03-16 15:52:22 -0400
committerR David Murray <rdmurray@bitdance.com>2011-03-16 15:52:22 -0400
commitdc0bc8badd9ab2678c560a064107df8ee083c553 (patch)
treea45ef3c231585a167d3cc5236f6e02b11e8759e0 /Misc
parentb5a08b6908fb8466213a1a0e99fdbc6b99406430 (diff)
downloadcpython-dc0bc8badd9ab2678c560a064107df8ee083c553.tar.gz
#9298: restore proper folding of base64 encoded bodies.
Patch by Yves Dorfsman.
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 e5ee8710b0..5d9b198301 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -202,6 +202,7 @@ Daniel Dittmar
Jaromir Dolecek
Ismail Donmez
Dima Dorfman
+Yves Dorfsman
Cesar Douady
Dean Draayer
Fred L. Drake, Jr.
diff --git a/Misc/NEWS b/Misc/NEWS
index d5c4699b68..beb6ec1c12 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 #11569: use absolute path to the sysctl command in multiprocessing to
ensure that it will be found regardless of the shell PATH. This ensures
that multiprocessing.cpu_count works on default installs of MacOSX.