From: R David Murray Date: Thu, 8 Sep 2016 01:21:58 +0000 (-0400) Subject: #24277: What's New and news entries for previous commit. X-Git-Tag: v3.6.0b1~305 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e7cdb2586193726e0263eeec82c05f2a0d9c2c9;p=thirdparty%2FPython%2Fcpython.git #24277: What's New and news entries for previous commit. --- diff --git a/Doc/whatsnew/3.6.rst b/Doc/whatsnew/3.6.rst index e48ed01fc214..4398da516cf2 100644 --- a/Doc/whatsnew/3.6.rst +++ b/Doc/whatsnew/3.6.rst @@ -462,6 +462,11 @@ need to be adapted. See :issue:`27819` for more details. email ----- +The new email API, enabled via the *policy* keyword to various constructors, is +no longer provisional. The :mod:`email` documentation has been reorganized and +rewritten to focus on the new API, while retaining the old documentation for +the legacy API. (Contributed by R. David Murray in :issue:`24277`.) + The :mod:`email.mime` classes now all accept an optional *policy* keyword. (Contributed by Berker Peksag in :issue:`27331`.) diff --git a/Misc/NEWS b/Misc/NEWS index 726461590b41..c60e8708034f 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -99,6 +99,9 @@ Core and Builtins Library ------- +- Issue #24277: The new email API is no longer provisional, and the docs + have been reorganized and rewritten to emphasize the new API. + - lib2to3.pgen3.driver.load_grammar() now creates a stable cache file between runs given the same Grammar.txt input regardless of the hash randomization setting.