summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-12-02 21:47:19 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2010-12-02 21:47:19 (GMT)
commita0b44b5adb05e96e68297adcba39985b8f4dee61 (patch)
tree1015b86932a3a58250e2833d8fec977671eddf04 /Misc/NEWS
parent52173d4959a1c1e961efab2522e4ba8a22a3c7c6 (diff)
downloadcpython-a0b44b5adb05e96e68297adcba39985b8f4dee61.zip
cpython-a0b44b5adb05e96e68297adcba39985b8f4dee61.tar.gz
cpython-a0b44b5adb05e96e68297adcba39985b8f4dee61.tar.bz2
#8989: add 'domain' keyword to make_msgid.
Patch by Adrian von Bidder.
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 aeb1f14..8205343 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -53,6 +53,9 @@ Core and Builtins
Library
-------
+- Issue #8989: email.utils.make_msgid now has a domain parameter that can
+ override the domain name used in the generated msgid.
+
- Issue #9299: Add exist_ok parameter to os.makedirs to suppress the
'File exists' exception when a target directory already exists with the
specified mode. Patch by Ray Allen.