summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-03-16 19:52:22 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-03-16 19:52:22 (GMT)
commit6d94bd470e3f4aa1dc7295b034553509ace2c654 (patch)
tree48b4d853d3e0755d0f6e3013a2b50603956807da /Misc/NEWS
parentd3b7a55f543bf1c3ea6bcf10dd03b0919822f993 (diff)
downloadcpython-6d94bd470e3f4aa1dc7295b034553509ace2c654.zip
cpython-6d94bd470e3f4aa1dc7295b034553509ace2c654.tar.gz
cpython-6d94bd470e3f4aa1dc7295b034553509ace2c654.tar.bz2
#9298: restore proper folding of base64 encoded bodies.
Patch by Yves Dorfsman.
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 d5c4699..beb6ec1 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.