diff options
author | R David Murray <rdmurray@bitdance.com> | 2011-03-16 15:52:22 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2011-03-16 15:52:22 -0400 |
commit | dc0bc8badd9ab2678c560a064107df8ee083c553 (patch) | |
tree | a45ef3c231585a167d3cc5236f6e02b11e8759e0 /Misc | |
parent | b5a08b6908fb8466213a1a0e99fdbc6b99406430 (diff) | |
download | cpython-dc0bc8badd9ab2678c560a064107df8ee083c553.tar.gz |
#9298: restore proper folding of base64 encoded bodies.
Patch by Yves Dorfsman.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -202,6 +202,7 @@ Daniel Dittmar Jaromir Dolecek Ismail Donmez Dima Dorfman +Yves Dorfsman Cesar Douady Dean Draayer Fred L. Drake, Jr. @@ -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. |