summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2011-07-03 01:03:19 (GMT)
committerR David Murray <rdmurray@bitdance.com>2011-07-03 01:03:19 (GMT)
commitac4e5abc788dfd10474fe3b0a6c5c802d3159763 (patch)
tree9157a750e1c58b5fa72943c5a8def6bc61314b31 /Misc/NEWS
parent623e8b86af8d8b34589478f7c85de49054e07a6d (diff)
downloadcpython-ac4e5abc788dfd10474fe3b0a6c5c802d3159763.zip
cpython-ac4e5abc788dfd10474fe3b0a6c5c802d3159763.tar.gz
cpython-ac4e5abc788dfd10474fe3b0a6c5c802d3159763.tar.bz2
#12147: make send_message correctly handle Sender and Resent- headers.
Original patch by Nicolas Estibals. My tweaks to the patch were mostly style/cosmetic, and adding more tests.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2013559..89542ec 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,6 +28,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.