summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-07-03 01:10:44 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-07-03 01:10:44 (GMT)
commitdb4120bf9d7ea434b27ad531cd33ed4987b6dcf3 (patch)
tree01db653f2214b6d37029481a36c667de9317ec58 /Misc
parent020436b0d4ae271638ed5d0881c1fa7f7c0a1b09 (diff)
parentac4e5abc788dfd10474fe3b0a6c5c802d3159763 (diff)
downloadcpython-db4120bf9d7ea434b27ad531cd33ed4987b6dcf3.zip
cpython-db4120bf9d7ea434b27ad531cd33ed4987b6dcf3.tar.gz
cpython-db4120bf9d7ea434b27ad531cd33ed4987b6dcf3.tar.bz2
merge #12147: make send_message correctly handle Sender and Resent- headers.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index f6faa18..3fb0d9d 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -278,6 +278,7 @@ Ben Escoto
Andy Eskilsson
André Espaze
Stefan Esser
+Nicolas Estibals
Stephen D Evans
Carey Evans
Tim Everett
diff --git a/Misc/NEWS b/Misc/NEWS
index 547c0fa..006a813 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -203,6 +203,9 @@ Core and Builtins
Library
-------
+- Issue #12147: Adjust the new-in-3.2 smtplib.send_message method for better
+ conformance to the RFCs: correctly handle Sender and Resent- headers.
+
- Issue #12352: Fix a deadlock in multiprocessing.Heap when a block is freed by
the garbage collector while the Heap lock is held.