summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-03-08 02:04:06 +0000
committerR. David Murray <rdmurray@bitdance.com>2010-03-08 02:04:06 +0000
commitfa0ce211368965f824ea8a9c6174bd456c640f1d (patch)
tree139dfaece2f9bbac3c17fdd0738ec42908b5482e /Misc
parent3c9d56e0328d731513153e5337765fc5ac56c241 (diff)
downloadcpython-fa0ce211368965f824ea8a9c6174bd456c640f1d.tar.gz
Issue #7143: get_payload used to strip any trailing newline from a
base64 transfer-encoded payload *after* decoding it; it no longer does. email had a special method in utils, _bdecode, specifically to do this, so it must have served a purpose at some point, yet it is clearly wrong per RFC. Fixed with Barry's approval, but no backport. Email package minor version number is bumped, now version 4.0.1. Patch by Joaquin Cuenca Abela.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS6
2 files changed, 7 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 426d0dd022..09f478209a 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -10,6 +10,7 @@ Without you, I would've stopped working on Python long ago!
PS: In the standard Python distribution, this file is encoded in UTF-8.
+Joaquin Cuenca Abela
David Abrahams
Jim Ahlstrom
Farhan Ahmad
diff --git a/Misc/NEWS b/Misc/NEWS
index b1431a3e00..1f16de8d8d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,11 @@ Core and Builtins
Library
-------
+- Issue #7143: get_payload used to strip any trailing newline from a
+ base64 transfer-encoded payload *after* decoding it; it no longer does.
+ This is a behavior change, so email's minor version number is now
+ bumped, to version 4.0.2, for the 2.7 release.
+
Extension Modules
-----------------
@@ -28,6 +33,7 @@ Extension Modules
and standard packing.)
+
What's New in Python 2.7 alpha 4?
=================================